We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 852391e commit b13bf5cCopy full SHA for b13bf5c
Sources/AWSLambdaRuntime/LambdaRuntimeClient.swift
@@ -356,8 +356,6 @@ final actor LambdaRuntimeClient: LambdaRuntimeClientProtocol {
356
try channel.pipeline.syncOperations.addHTTPClientHandlers()
357
// Lambda quotas... An invocation payload is maximal 6MB in size:
358
// https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html
359
- // TODO: should we enforce this here ? What about streaming functions that
360
- // support up to 20Mb responses ?
361
try channel.pipeline.syncOperations.addHandler(
362
NIOHTTPClientResponseAggregator(maxContentLength: 6 * 1024 * 1024)
363
)
0 commit comments