Skip to content

Commit

Permalink
Merge pull request #104 from julakali/master
Browse files Browse the repository at this point in the history
fixes wrong sleep time #103
  • Loading branch information
gboudreau committed Jan 20, 2014
2 parents 6e97b9a + a78fa42 commit f1861f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion greyhole
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ function execute_next_task() {
$log->emailAsRequired();
}

sleep($log_level == DEBUG ? 10 : ($log_level == TEST || PERF ? 1 : 600));
sleep($log_level == DEBUG ? 10 : ($log_level == TEST || $log_level == PERF ? 1 : 600));
db_free_result($result_new_tasks);
$result_new_tasks = null;
$locked_files = array();
Expand Down

0 comments on commit f1861f6

Please sign in to comment.