Skip to content

Commit 1511c68

Browse files
committed
Fix column name in jobs selector
1 parent 1597a11 commit 1511c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/VariantProcessingJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public List<PipelineJob> createSplitJobs()
217217
{
218218
// Check if exists and only create if needed:
219219
SimpleFilter filter = new SimpleFilter(FieldKey.fromString("JobParent"), getJobGUID());
220-
filter.addCondition(FieldKey.fromString("Name"), getChildJobName(this, name));
220+
filter.addCondition(FieldKey.fromString("Description"), getChildJobName(this, name));
221221
TableSelector ts = new TableSelector(ti, filter, null);
222222
if (ts.exists())
223223
{

0 commit comments

Comments
 (0)