Skip to content

Commit

Permalink
Update SequenceJobResourceAllocator
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Mar 15, 2024
1 parent b388b5f commit c2d9a6e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public Integer getPriority(TaskId taskId)
{
return (taskId.getNamespaceClass() != null && (
(taskId.getNamespaceClass().getName().startsWith("org.labkey.sequenceanalysis.pipeline") ||
taskId.getNamespaceClass().getName().startsWith("org.labkey.jbrowse.pipeline"))
taskId.getNamespaceClass().getName().startsWith("org.labkey.jbrowse.pipeline") ||
taskId.getNamespaceClass().getName().endsWith("GeneticCalculationsRTask"))
)) ? 50 : null;
}
}
Expand Down

0 comments on commit c2d9a6e

Please sign in to comment.