You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitProcessHandler.cs
+6-10Lines changed: 6 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -232,21 +232,17 @@ public bool IsRetriableGitError(CommandResult result)
232
232
returntrue;
233
233
}
234
234
235
-
// fatal: unable to access 'https://github.com/Azure/azure-sdk-assets/': Failed to connect to github.com port 443: Connection timed out
236
-
if(result.StdErr.Contains("Failed to connect to github.com port 443: Connection timed out"))
235
+
// fatal: unable to access 'https://github.com/Azure/azure-sdk-assets/': Failed to connect to github.com port 443 after 21019 ms: Couldn't connect to server
236
+
varregex=newRegex(@"Failed to connect to github.com port 443 after [\d]+ ms: Couldn't connect to server");
237
+
if(regex.IsMatch(result.StdErr))
237
238
{
238
239
returntrue;
239
240
}
240
241
241
242
// fatal: unable to access 'https://github.com/Azure/azure-sdk-assets/': Failed to connect to github.com port 443: Operation timed out
242
-
if(result.StdErr.Contains("Failed to connect to github.com port 443: Operation timed out"))
243
-
{
244
-
returntrue;
245
-
}
246
-
247
-
// fatal: unable to access 'https://github.com/Azure/azure-sdk-assets/': Failed to connect to github.com port 443 after 21019 ms: Couldn't connect to server
248
-
varregex=newRegex(@"Failed to connect to github.com port 443 after [\d]+ ms: Couldn't connect to server");
249
-
if(regex.IsMatch(result.StdErr))
243
+
// fatal: unable to access 'https://github.com/Azure/azure-sdk-assets/': Failed to connect to github.com port 443: Connection timed out
244
+
// fatal: unable to access 'https://github.com/Azure/azure-sdk-assets/': Recv failure: Operation timed out
0 commit comments