From 995d8aea648d323cbe4db5c75c0da40792b0e543 Mon Sep 17 00:00:00 2001 From: Yi Cheng Date: Wed, 21 Apr 2021 17:11:51 -0700 Subject: [PATCH 1/2] fix --- python/ray/worker.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/ray/worker.py b/python/ray/worker.py index dc8c43344b01..8e9e0a30bbfe 100644 --- a/python/ray/worker.py +++ b/python/ray/worker.py @@ -78,6 +78,10 @@ def _unhandled_error_handler(e: Exception): "RAY_IGNORE_UNHANDLED_ERRORS=1): {}".format(e)) +""" +I found a bug and this is the bug I fixed it +""" + class Worker: """A class used to define the control flow of a worker process. From de187bc962a461179ade4163c0c7468c12dbe04d Mon Sep 17 00:00:00 2001 From: Yi Cheng Date: Wed, 21 Apr 2021 17:14:48 -0700 Subject: [PATCH 2/2] revert --- python/ray/worker.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/python/ray/worker.py b/python/ray/worker.py index 8e9e0a30bbfe..dc8c43344b01 100644 --- a/python/ray/worker.py +++ b/python/ray/worker.py @@ -78,10 +78,6 @@ def _unhandled_error_handler(e: Exception): "RAY_IGNORE_UNHANDLED_ERRORS=1): {}".format(e)) -""" -I found a bug and this is the bug I fixed it -""" - class Worker: """A class used to define the control flow of a worker process.