Skip to content

Commit 3441297

Browse files
Merge pull request #1260 from fahhem:patch-20
PiperOrigin-RevId: 831405341
2 parents 8213cbf + 4b7387e commit 3441297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openhtf/plugs/user_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def wait_for_prompt(self, timeout_s: Union[int, float, None] = None) -> Text:
253253
with self._cond:
254254
if self._prompt:
255255
if timeout_s is None:
256-
self._cond.wait(3600 * 24 * 365)
256+
self._cond.wait(threading.TIMEOUT_MAX)
257257
else:
258258
self._cond.wait(timeout_s)
259259
if self._response is None:

0 commit comments

Comments
 (0)