File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22<package xmlns =" http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd" >
33 <metadata >
44 <id >ably.io</id >
5- <version >0.8.4.2 </version >
5+ <version >0.8.4.3 </version >
66 <title >ably.io</title >
77 <authors >Yavor Ivanov,Martin Georgiev</authors >
88 <owners >Ably Real-time Ltd</owners >
Original file line number Diff line number Diff line change @@ -204,7 +204,11 @@ internal bool IsRetryableError(Exception ex)
204204 var webEx = httpEx . InnerException as WebException ;
205205 return webEx . Status == WebExceptionStatus . NameResolutionFailure ||
206206 webEx . Status == WebExceptionStatus . Timeout ||
207- webEx . Status == WebExceptionStatus . ConnectFailure ;
207+ webEx . Status == WebExceptionStatus . ConnectFailure ||
208+ webEx . Status == WebExceptionStatus . ReceiveFailure ||
209+ webEx . Status == WebExceptionStatus . ConnectionClosed ||
210+ webEx . Status == WebExceptionStatus . SendFailure ||
211+ webEx . Status == WebExceptionStatus . ServerProtocolViolation ;
208212 }
209213 return false ;
210214 }
You can’t perform that action at this time.
0 commit comments