Skip to content

Commit

Permalink
feat: pass cluster name to bookend (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
y-oksaku authored Oct 18, 2022
1 parent f45c883 commit bda5dc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/buildFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit bda5dc0

Please sign in to comment.