diff --git a/cli/src/commands/user/list.rs b/cli/src/commands/user/list.rs index d23abed1180..d6223775282 100644 --- a/cli/src/commands/user/list.rs +++ b/cli/src/commands/user/list.rs @@ -37,7 +37,5 @@ pub async fn list_user(args: Args, client: &StartedClient) -> anyhow::Result<()> } } - client.stop().await; - Ok(()) } diff --git a/cli/src/commands/workspace/list.rs b/cli/src/commands/workspace/list.rs index 43d0be2730d..6488dfc9996 100644 --- a/cli/src/commands/workspace/list.rs +++ b/cli/src/commands/workspace/list.rs @@ -30,7 +30,5 @@ pub async fn list_workspace(_args: Args, client: &StartedClient) -> anyhow::Resu } } - client.stop().await; - Ok(()) }