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
Describe the bug
Appending multiple events with ExpectedVersion.NoStream to a stream that doesn't exist or that has been soft deleted throws wrong expected version.
To Reproduce
Steps to reproduce the behavior:
Start an empty database
Write two events with expected version NoStream
var e = new EventData(Uuid.NewUuid(), "type", new byte[0], new byte[0]);
await client.AppendToStreamAsync("stream", StreamState.NoStream, new EventData[]{e,e});
Throws:
Unhandled exception. EventStore.Client.WrongExpectedVersionException: Append failed due to WrongExpectedVersion. Stream: stream, Expected state: NoStream, Actual version: 1
Both events are appended but the client throws the wrong expected version error.
The same behaviour can be seen with a soft deleted stream - the events are appended but the client throws an error.
Expected behavior
No error should be thrown.
Actual behavior
Wrong expected version error is thrown
Config/Logs/Screenshots
If applicable, please attach your node configuration, logs or any screenshots.
Describe the bug
Appending multiple events with ExpectedVersion.NoStream to a stream that doesn't exist or that has been soft deleted throws wrong expected version.
To Reproduce
Steps to reproduce the behavior:
Both events are appended but the client throws the wrong expected version error.
The same behaviour can be seen with a soft deleted stream - the events are appended but the client throws an error.
Expected behavior
No error should be thrown.
Actual behavior
Wrong expected version error is thrown
Config/Logs/Screenshots
If applicable, please attach your node configuration, logs or any screenshots.
EventStore details
EventStore server version:
master
(kurrent-io/EventStore@9a56a94)Operating system:
Ubuntu 18.04
EventStore client version (if applicable):
EventStore.Client.Grpc.Streams 21.2.0
The text was updated successfully, but these errors were encountered: