Skip to content

Commit c9965c1

Browse files
committed
Increase attempts
1 parent acbe705 commit c9965c1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/DB_Command_SQLite.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ protected function sqlite_drop() {
158158

159159
$attempts = 0;
160160
$unlinked = false;
161-
while ( $attempts < 10 ) {
161+
while ( $attempts < 30 ) {
162162
if ( ! file_exists( $db_path ) ) {
163163
$unlinked = true;
164164
break;
@@ -199,7 +199,7 @@ protected function sqlite_reset() {
199199

200200
$attempts = 0;
201201
$unlinked = false;
202-
while ( $attempts < 10 ) {
202+
while ( $attempts < 30 ) {
203203
if ( ! file_exists( $db_path ) ) {
204204
$unlinked = true;
205205
break;

0 commit comments

Comments
 (0)