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.
1 parent f1b7a3e commit 4e1156bCopy full SHA for 4e1156b
projects/Test/Integration/ToxiproxyManager.cs
@@ -116,8 +116,14 @@ protected virtual void Dispose(bool disposing)
116
{
117
if (disposing)
118
119
- _proxyClient.DeleteAsync(_proxy).GetAwaiter().GetResult();
120
- _proxyConnection.Dispose();
+ try
+ {
121
+ _proxyClient.DeleteAsync(_proxy).GetAwaiter().GetResult();
122
+ _proxyConnection.Dispose();
123
+ }
124
+ catch
125
126
127
}
128
129
_disposedValue = true;
0 commit comments