[Flight] Fix hasReadable flag in Node.js clients' debug channel
#35039
+4
−16
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.
For Edge Flight servers, that use Web Streams, we're defining the
debugChanneloption as:Whereas for Node.js Flight servers, that use Node.js Streams, we're defining it as:
For the Edge Flight clients, there is currently only one direction of the debug channel supported, so we define the option as:
Consequently, for the Node.js Flight clients, we define the option as:
The presence of a readable debug channel is passed to the Flight client internally via the
hasReadableflag on the internaldebugChanneloption. For the Node.js clients, that flag was accidentally derived from the public optiondebugChannel.readable, which is conceptually incorrect, becausedebugChannelis aReadablestream, not an optionsobject with a
readableproperty. However, aReadablealso has areadableproperty, which is a boolean that indicates whether the stream is in a readable state. This meant that thehasReadableflag was incidentally still set correctly. Regardless, this was confusing and unintentional, so we're now fixing it to always sethasReadabletotruewhen adebugChannelis provided to the Node.js clients. We'll revisit this in case we ever add support for writable debug channels in Node.js (and Edge) clients.