-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
Expected Behavior
for (let i = 0; i < 10; i++) {
await daprClient.state.save('statestore', [
{
key: 'key',
value: random(),
etag: 'x',
},
])
}
This code should throw etag mismatch error
Actual Behavior
state save success without any error, etag increase one each time
Steps to Reproduce the Problem
Just run that code above