We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7515a0 commit a91ba14Copy full SHA for a91ba14
src/bentoml/_internal/cloud/deployment.py
@@ -508,7 +508,7 @@ def wait_until_ready(
508
if spinner is not None:
509
stop_tail_event = Event()
510
511
- def tail_image_builder_logs():
+ def tail_image_builder_logs() -> None:
512
cloud_rest_client = get_rest_api_client(self._context)
513
pod: KubePodSchema | None = None
514
while True:
@@ -539,6 +539,7 @@ def tail_image_builder_logs():
539
if is_first:
540
is_first = False
541
spinner.update("🚧 Image building...")
542
+ spinner.stop()
543
print(decoded_str, end="", flush=True)
544
545
tail_thread: Thread | None = None
0 commit comments