Replies: 1 comment 4 replies
-
The SDK and Lambda only support HTTP 1.1. There is nothing in the SDK that would attempt HTTP3, there are no AWS services that support HTTP3. I suspect the problem is coming from some where else in your application or something special on your environment that is trying to elevate the HTTP version, not sure what that would be though. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have a problem invoking one lambda from another one. Both lambdas use .Net6 environment.
In the majority of cases, everything works fine but sometimes it fails with the next exception:
Code example:
For me, it looks like the lambda client has got a request to upgrade the protocol to version HTTP3. But according to the MS Documentation looks like this protocol became supported as a preview feature only in .Net7.
Does someone know how to fix it and why such an issue happens just time to time?
Beta Was this translation helpful? Give feedback.
All reactions