From 4e6229aac517f9fbb43d5698e729df6f5a54b48b Mon Sep 17 00:00:00 2001 From: Kevin Birk Date: Thu, 19 Sep 2024 09:44:26 -0400 Subject: [PATCH] Fix accidental recursion (#4843) --- packages/taskrunner/taskrunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/taskrunner/taskrunner.py b/packages/taskrunner/taskrunner.py index dc7ec60f01..c8c8426579 100644 --- a/packages/taskrunner/taskrunner.py +++ b/packages/taskrunner/taskrunner.py @@ -110,7 +110,7 @@ def read_input() -> bytes: raise TimeoutError("Reading from input pipe timed out") def read_input_str_with_timeout(self, timeout_seconds: int = 30) -> str: - return self.read_input_str_with_timeout(timeout_seconds).decode("utf-8") + return self.read_input_bytes_with_timeout(timeout_seconds).decode("utf-8") def read_input_dict_with_timeout(self, timeout_seconds: int = 30) -> dict: return json.loads(self.read_input_str_with_timeout(timeout_seconds))