From beb3560c7d4a4a14272d444791974cb335c06b16 Mon Sep 17 00:00:00 2001 From: Jimmy Christensen Date: Mon, 17 Jun 2024 17:44:00 +0200 Subject: [PATCH] Add missing determineOutputs in JobSpec.java (#1377) When importing the changes for "ass-outputs" I was missing the function to parse the output data from the jobspec. Follow up to #1361 --- cuebot/src/main/java/com/imageworks/spcue/service/JobSpec.java | 1 + 1 file changed, 1 insertion(+) diff --git a/cuebot/src/main/java/com/imageworks/spcue/service/JobSpec.java b/cuebot/src/main/java/com/imageworks/spcue/service/JobSpec.java index 6df141c12..69ae9553d 100644 --- a/cuebot/src/main/java/com/imageworks/spcue/service/JobSpec.java +++ b/cuebot/src/main/java/com/imageworks/spcue/service/JobSpec.java @@ -446,6 +446,7 @@ private void handleLayerTags(BuildableJob buildableJob, Element jobTag) { determineMinimumMemory(buildableJob, layerTag, layer, buildableLayer); determineMinimumGpuMemory(buildableJob, layerTag, layer); + determineOutputs(layerTag, buildableJob, layer); // set a timeout value on the layer if (layerTag.getChildTextTrim("timeout") != null) {