Subversion Repositories ALCASAR

Rev

Rev 3241 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 3241 Rev 3272
Line 51... Line 51...
51
$d->log('Starting periodic execution', \LOG_INFO);
51
$d->log('Starting periodic execution', \LOG_INFO);
52
 
52
 
53
/* @phpstan-ignore-next-line */
53
/* @phpstan-ignore-next-line */
54
while (1) {
54
while (1) {
55
    // next import in 30 seconds
55
    // next import in 30 seconds
56
    sleep(30);
56
    sleep(60);
57
 
57
 
58
    // import from last db update
58
    // import from last db update
59
    $i->start($start);
59
    $i->start($start);
60
}
60
}
61
 
61