fix: JS clients must not release tickets for pending operations#6618
Merged
rcaudy merged 2 commits intodeephaven:rc/v0.37.xfrom Feb 5, 2025
Merged
fix: JS clients must not release tickets for pending operations#6618rcaudy merged 2 commits intodeephaven:rc/v0.37.xfrom
rcaudy merged 2 commits intodeephaven:rc/v0.37.xfrom
Conversation
…haven#6591) When a necessary operation is still running, clients must not release upstream tickets. This has mostly worked by the server running fast enough or by the websocket transport serializing operations in a way that we can't always rely on. Testing this is difficult to reliably do - the ticket has some manual steps that generally make it possible to see the issue, and we're exploring other options to make bugs like this more obvious. At this time, there is no good way to put an integration test in that verifies correct behavior efficiently. Fixes deephaven#6056 Fixes DH-18486
mofojed
previously approved these changes
Feb 3, 2025
mofojed
reviewed
Feb 5, 2025
| @@ -0,0 +1,18 @@ | |||
| // | |||
| // Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending | |||
Member
Author
There was a problem hiding this comment.
Not I think in a backport, since we didnt backport the year change.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a necessary operation is still running, clients must not release upstream tickets. This has mostly worked by the server running fast enough or by the websocket transport serializing operations in a way that we can't always rely on.
Testing this is difficult to reliably do - the ticket has some manual steps that generally make it possible to see the issue, and we're exploring other options to make bugs like this more obvious. At this time, there is no good way to put an integration test in that verifies correct behavior efficiently.
Fixes #6056
Fixes DH-18486
Backport #6591
Backport #6616