Skip to content

Commit

Permalink
- adds confirmation message after removing the client
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Mar 6, 2024
1 parent 0209e79 commit ecd8d0b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/kiota/Handlers/Client/RemoveHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public override async Task<int> InvokeAsync(InvocationContext context)
await CheckForNewVersionAsync(logger, cancellationToken).ConfigureAwait(false);
var workspaceManagementService = new WorkspaceManagementService(logger, httpClient, true);
await workspaceManagementService.RemoveClientAsync(className, cleanOutput, cancellationToken).ConfigureAwait(false);
DisplaySuccess($"Client {className} removed successfully!");
return 0;
}
catch (Exception ex)
Expand Down

0 comments on commit ecd8d0b

Please sign in to comment.