Hi all,
Just realized that hard deleting a non existing stream twice returns a HTTP status 410 the second time.
First call:
curl -i -X DELETE http://127.0.0.1:2113/streams/xyz -H “ES-HardDelete: true”
HTTP/1.1 204 Stream deleted
``
Second call:
curl -i -X DELETE http://127.0.0.1:2113/streams/xyz -H “ES-HardDelete: true”
HTTP/1.1 410 Stream deleted
``
Is this an expected behaviour?
Cheers,
Michael