We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Occasionally(~1/50 times), UpsertDocumentAsync returns null etag without exception
To Reproduce for (int i = 0; i <100; i++) { // Update document
try { Document doc = await this.DocumentDbClient.UpsertDocumentAsync(Uri, updatedDoc).ConfigureAwait(false); Assert.IsNotNull(doc.ETag); } catch(Exception ex) { // Log exception } }
Expected behavior ETag not null
Actual behavior ~1/50 ETag is null
Environment summary
SDK Version: 2.18.0 OS Version (e.g. Windows, Linux, MacOSX): Windows
Additional context Azure Service Fabric Azure CosmosDb
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Occasionally(~1/50 times), UpsertDocumentAsync returns null etag without exception
To Reproduce
for (int i = 0; i <100; i++)
{
// Update document
try
{
Document doc = await this.DocumentDbClient.UpsertDocumentAsync(Uri, updatedDoc).ConfigureAwait(false);
Assert.IsNotNull(doc.ETag);
}
catch(Exception ex)
{
// Log exception
}
}
Expected behavior
ETag not null
Actual behavior
~1/50 ETag is null
Environment summary
SDK Version: 2.18.0
OS Version (e.g. Windows, Linux, MacOSX): Windows
Additional context
Azure Service Fabric
Azure CosmosDb
The text was updated successfully, but these errors were encountered: