Skip to content

Commit

Permalink
Revert "[air] fix xgboost_benchmark script by passing in args (ray-pr…
Browse files Browse the repository at this point in the history
…oject#27146)"

This reverts commit 0fa2e1b.
  • Loading branch information
Kai Fricke committed Jul 28, 2022
1 parent 9f05bac commit 638c7ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def exception(self):
self._exception = self._pconn.recv()
return self._exception

p = MyProcess(target=f, args=args, kwargs=kwargs)
p = MyProcess(target=f, *args, **kwargs)
start = time.monotonic()
p.start()
p.join()
Expand Down

0 comments on commit 638c7ae

Please sign in to comment.