Skip to content

Commit

Permalink
Fix stream path
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpaterson committed Mar 8, 2024
1 parent a109a37 commit 3451d3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http-client/node-http2-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export class NodeHTTP2Client implements HTTPClient {
async function* reader(): AsyncGenerator<string> {
const httpRequestHeaders: OutgoingHttpHeaders = {
...requestHeaders,
[http2.constants.HTTP2_HEADER_PATH]: "/query/1",
[http2.constants.HTTP2_HEADER_PATH]: "/stream/1",
[http2.constants.HTTP2_HEADER_METHOD]: method,
};

Expand Down

0 comments on commit 3451d3e

Please sign in to comment.