From 4abbcd51a9193b422557c5a692e81853ad5a351b Mon Sep 17 00:00:00 2001 From: Val Brodsky Date: Thu, 4 Apr 2024 14:15:12 -0700 Subject: [PATCH] Increase exporter wait timeout to 2 hours --- labelbox/schema/export_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labelbox/schema/export_task.py b/labelbox/schema/export_task.py index ad44e03ec..52c9c295f 100644 --- a/labelbox/schema/export_task.py +++ b/labelbox/schema/export_task.py @@ -631,7 +631,7 @@ def organization(self): """Returns the organization of the task.""" return self._task.organization - def wait_till_done(self, timeout_seconds: int = 300) -> None: + def wait_till_done(self, timeout_seconds: int = 7200) -> None: """Waits until the task is done.""" return self._task.wait_till_done(timeout_seconds)