Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
Potential fix for node6 function deployment failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpetrick committed Oct 11, 2019
1 parent e8596ce commit dc27441
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,13 @@ case class LambdaFunctionEnvironment(accounts: Vector[LambdaDeploymentAccount])
UpdateFunctionConfigurationRequest.builder
.functionName(lambdaFunctionName(project, name))
.handler(externalFile.lambdaHandler)
.runtime(runtime)
.build()
)

for {
_ <- updateCode.toScala
_ <- updateConfiguration.toScala
_ <- updateCode.toScala
} yield DeploySuccess()
}

Expand Down

0 comments on commit dc27441

Please sign in to comment.