From bda5dc000fbccac937a89a42fec00095fc037e9b Mon Sep 17 00:00:00 2001 From: y-oksaku <43719835+y-oksaku@users.noreply.github.com> Date: Tue, 18 Oct 2022 11:57:25 +0900 Subject: [PATCH] feat: pass cluster name to bookend (#566) --- lib/buildFactory.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/buildFactory.js b/lib/buildFactory.js index bcbf1aca..0968912e 100644 --- a/lib/buildFactory.js +++ b/lib/buildFactory.js @@ -251,8 +251,8 @@ class BuildFactory extends BaseFactory { } const [setup, teardown] = await Promise.all([ - this.bookend.getSetupCommands(bookendConfig), - this.bookend.getTeardownCommands(bookendConfig) + this.bookend.getSetupCommands(bookendConfig, buildClusterName), + this.bookend.getTeardownCommands(bookendConfig, buildClusterName) ]); modelConfig.createTime = new Date(number).toISOString();