Skip to content
Snippets Groups Projects
Commit 81680ef0 authored by Leo Gordon's avatar Leo Gordon
Browse files

bugfix: do not chicken out if sync() on this analysis has never been performed

parent 39030b45
No related branches found
No related tags found
No related merge requests found
......@@ -578,6 +578,7 @@ sub safe_synchronize_AnalysisStats {
return $stats if($stats->status eq 'DONE');
return $stats if(($stats->status eq 'WORKING') and
defined($stats->seconds_since_last_update) and
($stats->seconds_since_last_update < 3*60));
# try to claim the sync_lock
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment