File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Sources/AWSLambdaRuntimeCore Expand file tree Collapse file tree 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> {
463463 ) {
464464 if let requestID = sendHeadWithRequestID {
465465 // 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) "
467467
468468 // If we have less than 6MB, we don't want to use the streaming API. If we have more
469469 // than 6MB we must use the streaming mode.
@@ -510,7 +510,7 @@ private final class LambdaChannelHandler<Delegate> {
510510
511511 private func sendReportErrorRequest( requestID: String , error: any Error , context: ChannelHandlerContext ) {
512512 // 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) "
514514
515515 let httpRequest = HTTPRequestHead (
516516 version: . http1_1,
You can’t perform that action at this time.
0 commit comments