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
Despite the fact that ElasticSearch's response includes time zone information, the parsed value in the Date property of HistogramItem instances has the Kind property set to 'Unspecified', which is just wrong. I.e. the following Assert would fail:
HistogramItem histogramItem = // ... get from ElasticSearch
Assert.AreNotEqual(DateTimeKind.Unspecified, histogramItem.Date.Kind, "The DateTime Kind must not be Unspecified");
Since the timezone information is present, it should be parsed with that and then accordingly the DateTimeKind should be set on the parsed value.
This is for 1.7.1
The text was updated successfully, but these errors were encountered:
Despite the fact that ElasticSearch's response includes time zone information, the parsed value in the Date property of HistogramItem instances has the Kind property set to 'Unspecified', which is just wrong. I.e. the following Assert would fail:
Since the timezone information is present, it should be parsed with that and then accordingly the DateTimeKind should be set on the parsed value.
This is for 1.7.1
The text was updated successfully, but these errors were encountered: