File tree 1 file changed +2
-2
lines changed
Sources/AWSLambdaRuntimeCore
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ private final class LambdaChannelHandler<Delegate> {
463
463
) {
464
464
if let requestID = sendHeadWithRequestID {
465
465
// TODO: This feels quite expensive. We should be able to make this cheaper. requestIDs are fixed length
466
- let url = " \( Consts . invocationURLPrefix) / \( requestID) / \( Consts . postResponseURLSuffix) "
466
+ let url = " \( Consts . invocationURLPrefix) / \( requestID) \( Consts . postResponseURLSuffix) "
467
467
468
468
// If we have less than 6MB, we don't want to use the streaming API. If we have more
469
469
// than 6MB we must use the streaming mode.
@@ -510,7 +510,7 @@ private final class LambdaChannelHandler<Delegate> {
510
510
511
511
private func sendReportErrorRequest( requestID: String , error: any Error , context: ChannelHandlerContext ) {
512
512
// TODO: This feels quite expensive. We should be able to make this cheaper. requestIDs are fixed length
513
- let url = " \( Consts . invocationURLPrefix) / \( requestID) / \( Consts . postErrorURLSuffix) "
513
+ let url = " \( Consts . invocationURLPrefix) / \( requestID) \( Consts . postErrorURLSuffix) "
514
514
515
515
let httpRequest = HTTPRequestHead (
516
516
version: . http1_1,
You can’t perform that action at this time.
0 commit comments