Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
proggeramlug committed Oct 23, 2021
1 parent 51e5d64 commit 9e50652
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Sources/VaporAWSLambdaRuntime/ALB.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ struct ALBHandler: EventLoopLambdaHandler {

init(application: Application, responder: Responder) {
self.application = application
print("responder: ", responder)
self.responder = responder
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/VaporAWSLambdaRuntime/SQS.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ struct SQSHandler: EventLoopLambdaHandler {

init(application: Application, responder: Responder) {
self.application = application
print("responder: ", responder)
self.responder = responder
}

Expand All @@ -50,6 +49,7 @@ extension Vapor.Request {

convenience init(req: SQS.Event, in ctx: Lambda.Context, for application: Application) throws {
let event = req.records.first!
print("incoming events: ", req.records.count)
/*var buffer: NIO.ByteBuffer?
switch (req.body, req.isBase64Encoded) {
case (let .some(string), true):
Expand Down

0 comments on commit 9e50652

Please sign in to comment.