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 51d79d6 commit 7646d72Copy full SHA for 7646d72
src/warnet/control.py
@@ -141,7 +141,9 @@ def uninstall_release(namespace, release_name):
141
142
# Wait for all tasks to complete and print results
143
for future in as_completed(futures):
144
- console.print(f"[yellow]{future.result()}[/yellow]")
+ result = future.result()
145
+ msg = result if isinstance(result, str) else result.metadata.name
146
+ console.print(f"[yellow]Deletion: {msg} [/yellow]")
147
148
console.print("[bold yellow]Teardown process initiated for all components.[/bold yellow]")
149
console.print("[bold yellow]Note: Some processes may continue in the background.[/bold yellow]")
0 commit comments