EventStore/EventStoreDB-Client-Java

Inconsistent behaviour of EventSToreDBClient.tombstoneStream() depending on which variant is called (4.0.0 client)

thomdreilly opened this issue · 1 comments

The single-argument variant of tombstoneStream and the multiple-argument variant behave differently, as the softDelete flag is set to true in the former case, and false in the latter.

return this.deleteStream(streamName, DeleteStreamOptions.get());

I believe this line has a typo and should actually be:
return this.tombstoneStream(streamName, DeleteStreamOptions.get());

@thomdreilly Thanks for opening the issue and nice catch!