Fixed timeout value (#1370)

Co-authored-by: Ivan Cheung <ivanmkc@google.com>
This commit is contained in:
Ivan Cheung
2022-12-19 11:41:02 -05:00
committed by GitHub
co-authored by Ivan Cheung
parent 63d5b5e3bf
commit 9b5be742c1
@@ -245,7 +245,7 @@ def process_and_execute_notebook(
result.logs_bucket = operation_metadata.build.logs_bucket
# Block and wait for the result
operation_result = operation.result(timeout=86400)
operation_result = operation.result(timeout=timeout_in_seconds)
result.duration = datetime.datetime.now() - time_start
result.is_pass = True