Skip to content
Snippets Groups Projects
Commit 3c58956d authored by Patrick Godwin's avatar Patrick Godwin
Browse files

dags/layers/__init__.py: fix naming scheme for nodename condor job variable

parent 6c1713d6
No related branches found
No related tags found
1 merge request!41DAG Workflow Overhaul + OSG DAG support
......@@ -203,7 +203,7 @@ class Layer:
def _vars(self):
allvars = []
for i, node in enumerate(self.nodes):
nodevars = {"nodename": f"{self.name}_{i:04X}"}
nodevars = {"nodename": f"{self.name}_{i:05X}"}
# add arguments which aren't suppressed
if node.arguments:
nodevars.update({arg.condor_name: arg.vars() for arg in node.arguments if not arg.suppress})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment