File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Elasticsearch.Net/Responses Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ public class ElasticsearchResponse<T> : IApiCallDetails
75
75
public bool SuccessOrKnownError =>
76
76
this . Success || ( HttpStatusCode >= 400 && HttpStatusCode < 599
77
77
&& HttpStatusCode != 503 //service unavailable needs to be retried
78
- && HttpStatusCode != 502 //bad gateway needs to be retried
78
+ && HttpStatusCode != 502 //bad gateway needs to be retried
79
79
) ;
80
80
81
81
public Exception OriginalException { get ; protected internal set ; }
@@ -104,6 +104,6 @@ public string DebugInformation
104
104
}
105
105
}
106
106
107
- public override string ToString ( ) => $ "{ ( Success ? "S" : "Uns" ) } uccesful low level call on { HttpMethod . GetStringValue ( ) } : { Uri . PathAndQuery } ";
107
+ public override string ToString ( ) => $ "{ ( Success ? "S" : "Uns" ) } uccessful low level call on { HttpMethod . GetStringValue ( ) } : { Uri . PathAndQuery } ";
108
108
}
109
109
}
You can’t perform that action at this time.
0 commit comments