Fix bug when exporting debug information with multiple remote servers

Fix #1100
pull/1153/head
Julien Duponchelle 7 years ago
parent 7683a79bb1
commit 108a659ca4
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -169,7 +169,7 @@ class ServerHandler:
data = r.body.decode("utf-8")
except Exception as e:
data = str(e)
with open(os.path.join(debug_dir, "compute_{}.txt".format(compute.name)), "w+") as f:
with open(os.path.join(debug_dir, "compute_{}.txt".format(compute.id)), "w+") as f:
f.write("Compute ID: {}\n".format(compute.id))
f.write(data)

Loading…
Cancel
Save