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
Error [ERR_HTTP2_ERROR]: Protocol error
at new NghttpError (node:internal/http2/util:555:5)
at Http2Session.onSessionInternalError (node:internal/http2/core:784:26) {
code: 'ERR_HTTP2_ERROR',
errno: -505,
'$metadata': { attempts: 1, totalRetryDelay: 0 }
}
if I enable the SSL option for kinesalite (npx kinesalite --port=4567 --createStreaMs=5 --ssl) then I get
Error: Unexpected error: http2 request did not get a response
at ClientHttp2Stream.<anonymous> (.../node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http2-handler.js:105:28)
at ClientHttp2Stream.emit (node:events:390:28)
at emitCloseNT (node:internal/streams/destroy:138:10)
at processTicksAndRejections (node:internal/process/task_queues:82:21) {
'$metadata': { attempts: 1, totalRetryDelay: 0 }
}
when I try to connect to kinesalite with aws cli then it seems to work (no SSL only)
$ aws --endpoint-url=http://localhost:4567 kinesis list-streams --region eu-west-1
{
"StreamNames": [] // I have not created any, so this is correct
}
I believe this to be a bug in kinesalite.
The text was updated successfully, but these errors were encountered:
Hi,
the library does not seem to work with the v3 AWS SDK for Node.
Here is a sample repro:
and I am getting this vague error
if I enable the SSL option for
kinesalite
(npx kinesalite --port=4567 --createStreaMs=5 --ssl
) then I getwhen I try to connect to
kinesalite
withaws cli
then it seems to work (no SSL only)$ aws --endpoint-url=http://localhost:4567 kinesis list-streams --region eu-west-1 { "StreamNames": [] // I have not created any, so this is correct }
I believe this to be a bug in
kinesalite
.The text was updated successfully, but these errors were encountered: