Skip to content

Commit

Permalink
Merge branch 'develop' into add-nodejs.810
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulMaddox authored Apr 5, 2018
2 parents af5ad08 + 520fd02 commit ee1789f
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,7 @@ func (r *Runtime) getDebugEntrypoint() (overrides []string) {
"-XX:+UseSerialGC",
//"-Xshare:on", doesn't work in conjunction with the debug options
"-XX:-TieredCompilation",
"-Djava.net.preferIPv4Stack=true",
"-jar",
"/var/runtime/lib/LambdaJavaRTEntry-1.0.jar",
)
Expand All @@ -483,9 +484,9 @@ func (r *Runtime) getDebugEntrypoint() (overrides []string) {
overrides = append(overrides,
"--debug-brk="+r.DebugPort,
"--nolazy",
"--max-old-space-size=1229",
"--max-semi-space-size=76",
"--max-executable-size=153",
"--max-old-space-size=2547",
"--max-semi-space-size=150",
"--max-executable-size=160",
"--expose-gc",
"/var/runtime/node_modules/awslambda/index.js",
)
Expand All @@ -498,9 +499,9 @@ func (r *Runtime) getDebugEntrypoint() (overrides []string) {
"--inspect="+r.DebugPort,
"--debug-brk",
"--nolazy",
"--max-old-space-size=1229",
"--max-semi-space-size=76",
"--max-executable-size=153",
"--max-old-space-size=2547",
"--max-semi-space-size=150",
"--max-executable-size=160",
"--expose-gc",
"/var/runtime/node_modules/awslambda/index.js",
)
Expand Down

0 comments on commit ee1789f

Please sign in to comment.