File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -468,6 +468,7 @@ def _wait_for_deployment(
468468 ) as progress ,
469469 APIClient () as client ,
470470 ):
471+ progress .metadata ["done_emoji" ] = "π"
471472 try :
472473 for log in client .stream_build_logs (deployment .id ):
473474 time_elapsed = time .monotonic () - started_at
@@ -756,6 +757,7 @@ def deploy(
756757 toolkit .progress (title = "Creating deployment" ) as progress ,
757758 handle_http_errors (progress ),
758759 ):
760+ progress .metadata ["done_emoji" ] = "π¦"
759761 logger .debug ("Creating deployment for app: %s" , app .id )
760762 deployment = _create_deployment (app .id )
761763
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def _get_tag_segments(
4040 tag = emojis [self .animation_counter % len (emojis )]
4141
4242 if done :
43- tag = emojis [- 1 ]
43+ tag = metadata . get ( "done_emoji" , emojis [- 1 ])
4444
4545 left_padding = self .tag_width - 1
4646 left_padding = max (0 , left_padding )
You canβt perform that action at this time.
0 commit comments