Skip to content

Commit

Permalink
Fix duplicated taksId's
Browse files Browse the repository at this point in the history
  • Loading branch information
matthdsm authored Jul 9, 2024
1 parent b7d5ae0 commit 8f126d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class NomadTaskHandler extends TaskHandler implements FusionAwareTask {
def builder = createBashWrapper(task)
builder.build()

this.jobName = NomadHelper.sanitizeName(task.name + "-" + task.hash)
this.jobName = NomadHelper.sanitizeName(task.hash + "-" + task.name)

final taskLauncher = getSubmitCommand(task)
final taskEnv = getEnv(task)
Expand Down

0 comments on commit 8f126d4

Please sign in to comment.