From b5274fbbb9e55d456f8e2b9d50550ca8bda40c68 Mon Sep 17 00:00:00 2001 From: Timothy Power Date: Thu, 3 Oct 2019 00:17:11 +0800 Subject: [PATCH] Issue #4254 Force java.io.tmpdir = /tmp for native executable to address vertx-cache folder creation problem --- .../amazon-lambda/deployment/src/main/resources/bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/amazon-lambda/deployment/src/main/resources/bootstrap b/extensions/amazon-lambda/deployment/src/main/resources/bootstrap index f793cdcf9484d..c2e9a79e58040 100755 --- a/extensions/amazon-lambda/deployment/src/main/resources/bootstrap +++ b/extensions/amazon-lambda/deployment/src/main/resources/bootstrap @@ -4,7 +4,7 @@ RUNNER=$( find . -maxdepth 1 -name '*-runner' ) if [[ ! -z "$RUNNER" ]] then export DISABLE_SIGNAL_HANDLERS=true - $RUNNER + $RUNNER -Djava.io.tmpdir=/tmp else java -jar *-runner.jar -fi \ No newline at end of file +fi