Skip to content

Commit

Permalink
Cast str correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Apr 10, 2020
1 parent 28b36cc commit 0f3daa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WDL/runtime/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,9 +447,9 @@ def _run(
"name": "-".join(
[
"wdl",
os.getpid(),
str(os.getpid()),
socket.gethostname()[:12],
SwarmContainer._id_counter.next(),
str(SwarmContainer._id_counter.next()),
self.run_id,
]
)[:63],
Expand Down

0 comments on commit 0f3daa3

Please sign in to comment.