Skip to content

Commit

Permalink
fix: only send "cores" to pyoutline, "overrideCores" is only set in c…
Browse files Browse the repository at this point in the history
…uesubmit.
  • Loading branch information
KernAttila committed Sep 28, 2024
1 parent f7062af commit 01d3fb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cuesubmit/cuesubmit/Submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,10 @@ def buildLayer(layerData, command, lastLayer=None):
elif layerData.services and layerData.services[0] in Util.getServices():
threadable = Util.getServiceOption(layerData.services[0], 'threadable')

cores = layerData.cores if layerData.overrideCores else None
layer = outline.modules.shell.Shell(
layerData.name, command=command.split(), chunk=layerData.chunk,
overrideCores=layerData.overrideCores, cores=layerData.cores,
cores=cores,
range=str(layerData.layerRange), threadable=threadable)
if layerData.services:
layer.set_service(layerData.services[0])
Expand Down

0 comments on commit 01d3fb2

Please sign in to comment.