Skip to content

Commit 1166381

Browse files
committed
Only show long wait messages after 30 seconds
1 parent 694e2e8 commit 1166381

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fastapi_cloud_cli/commands/deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def _wait_for_deployment(
337337
)
338338
break
339339

340-
if time_elapsed > 10:
340+
if time_elapsed > 30:
341341
messages = cycle(LONG_WAIT_MESSAGES)
342342

343343
if (time.monotonic() - last_message_changed_at) > 2:

0 commit comments

Comments
 (0)