Skip to content

Commit 858fe71

Browse files
committed
Ignore exceptions during end processing
1 parent c62c8b5 commit 858fe71

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,15 @@ protected void ExecuteClientAction(Action action)
6363
}
6464
catch (CloudException ex)
6565
{
66-
base.EndProcessing();
66+
try
67+
{
68+
base.EndProcessing();
69+
}
70+
catch
71+
{
72+
// Ignore exceptions during end processing
73+
}
74+
6775
throw new ComputeCloudException(ex);
6876
}
6977
}

0 commit comments

Comments
 (0)