Fix name clash on Windows (#9412)

Co-authored-by: Mehrdad <noreply@github.com>
This commit is contained in:
mehrdadn
2020-07-14 23:14:53 -07:00
committed by GitHub
parent 6d99aa34a5
commit 33e400998c
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -658,8 +658,8 @@ class RayletStats(threading.Thread):
return {"status": "pending"}
reply = self._profiling_stats[profiling_id]
if reply.stderr:
return {"status": "error", "error": reply.stderr}
if reply.std_err:
return {"status": "error", "error": reply.std_err}
else:
return {"status": "finished"}