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
The documentation says RecoveryStrategy does not work with streams: why do I have to specify one then? Maybe It should be hardcoded to "none" if not supported?
The stream is closing because you did not set a resuming decider. Then, there is a race condition. The channel closes when the stream closes, but this is happening before the recoveryStrategy has a chance to apply.
The following code never nacks a "fail' message, every time it's restarted it reads it again.
It fails here with an
AlreadyClosedException
.The documentation says RecoveryStrategy does not work with streams: why do I have to specify one then? Maybe It should be hardcoded to "none" if not supported?
The text was updated successfully, but these errors were encountered: