Skip to content

Commit

Permalink
Merge pull request #15 from sirireddy12/helmupdatefix
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
sirireddy12 committed Feb 21, 2022
2 parents 3824c2c + 82989ab commit cc6006f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/connectedk8s/azext_connectedk8s/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,9 +753,9 @@ def create_cc_resource(client, resource_group_name, cluster_name, cc, no_wait):

def delete_cc_resource(client, resource_group_name, cluster_name, no_wait):
try:
sdk_no_wait(no_wait, client.begin_delete,
resource_group_name=resource_group_name,
cluster_name=cluster_name)
return sdk_no_wait(no_wait, client.begin_delete,
resource_group_name=resource_group_name,
cluster_name=cluster_name)
except Exception as e:
utils.arm_exception_handler(e, consts.Delete_ConnectedCluster_Fault_Type, 'Unable to delete connected cluster resource')

Expand Down

0 comments on commit cc6006f

Please sign in to comment.