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
Using the latest on master, noticing that delete response OK isn't correctly populating despite the underlying operation against ES succeeding without errors - here's the output from the immediate window:
public bool Delele(Guid streamId)
{
IDeleteResponse r = new ElasticClient(SearchSettings).Delete<MediaStream>(streamId.ToString(), i => i.Index("Stream"));
return r.OK;
}
The text was updated successfully, but these errors were encountered:
Using the latest on master, noticing that delete response OK isn't correctly populating despite the underlying operation against ES succeeding without errors - here's the output from the immediate window:
?r.OK
false
?r.ConnectionStatus.Success
true
?r.ConnectionStatus
{StatusCode: 200,
Method: DELETE,
HttpStatusCode: 200
NumberOfRetries: 0
OriginalException: null
RequestMethod: "DELETE"
ResponseRaw: null
Success: true
SuccessOrKnownError: true
And the original call:
The text was updated successfully, but these errors were encountered: