We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
down
1 parent 507a90e commit 89ea5daCopy full SHA for 89ea5da
src/warnet/control.py
@@ -142,7 +142,9 @@ def uninstall_release(namespace, release_name):
142
143
# Wait for all tasks to complete and print results
144
for future in as_completed(futures):
145
- console.print(f"[yellow]{future.result()}[/yellow]")
+ result = future.result()
146
+ msg = result if isinstance(result, str) else result.metadata.name
147
+ console.print(f"[yellow]Deletion: {msg} [/yellow]")
148
149
# Shutdown any port forwarding
150
_port_stop_internal("caddy", namespaces[1])
0 commit comments