Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
48b5f0e2
Commit
48b5f0e2
authored
Nov 28, 2011
by
Leo Gordon
Browse files
no need to check for semaphores when state is already DONE or PASSED_ON
parent
61be99bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/Bio/EnsEMBL/Hive/Queen.pm
modules/Bio/EnsEMBL/Hive/Queen.pm
+2
-2
No files found.
modules/Bio/EnsEMBL/Hive/Queen.pm
View file @
48b5f0e2
...
...
@@ -569,9 +569,9 @@ sub synchronize_AnalysisStats {
}
$analysisStats
->
num_required_workers
(
$required_workers
);
}
elsif
(
$status
eq
'
DONE
'
and
$semaphore_count
<=
0
)
{
}
elsif
(
$status
eq
'
DONE
')
{
$done_here
=
$job_count
;
}
elsif
(
$status
eq
'
PASSED_ON
'
and
$semaphore_count
<=
0
)
{
}
elsif
(
$status
eq
'
PASSED_ON
')
{
$done_elsewhere
=
$job_count
;
}
elsif
(
$status
eq
'
FAILED
')
{
$analysisStats
->
failed_job_count
(
$job_count
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment