From 58b623b389845fe4b64607983dea35f3ba975efd Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Mon, 24 Aug 2020 11:18:57 -0400 Subject: [PATCH] fix typo in ansible handlebars var name --- .../src/main/java/bubble/service/cloud/AnsiblePrepService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bubble-server/src/main/java/bubble/service/cloud/AnsiblePrepService.java b/bubble-server/src/main/java/bubble/service/cloud/AnsiblePrepService.java index ec4f1ce7..47376991 100644 --- a/bubble-server/src/main/java/bubble/service/cloud/AnsiblePrepService.java +++ b/bubble-server/src/main/java/bubble/service/cloud/AnsiblePrepService.java @@ -80,7 +80,7 @@ public class AnsiblePrepService { final ComputeNodeSize nodeSize = computeDriver.getSize(node.getSizeType()); ctx.put("nodeSize", nodeSize); - ctx.put("jvmMaxRam", jvmMaxRam(nodeSize, installType)); + ctx.put("jvmMaxRamMB", jvmMaxRam(nodeSize, installType)); if (restoreKey != null) { ctx.put("restoreKey", restoreKey); ctx.put("restoreTimeoutSeconds", RESTORE_MONITOR_SCRIPT_TIMEOUT_SECONDS);