Skip to content

Commit ad56068

Browse files
committed
fixed minor issue
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent 310a1cb commit ad56068

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/commands/network.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@ export class NetworkCommand extends BaseCommand {
344344
let valuesArg = '';
345345
if (config.app !== constants.HEDERA_APP_NAME) {
346346
const index = config.nodeAliases.length;
347+
// TODO @Jeromy, this values arg needs to be cluster specific or it will cause network deploy issues
347348
for (let i = 0; i < index; i++) {
348349
valuesArg += ` --set "hedera.nodes[${i}].root.extraEnv[0].name=JAVA_MAIN_CLASS"`;
349350
valuesArg += ` --set "hedera.nodes[${i}].root.extraEnv[0].value=com.swirlds.platform.Browser"`;

test/unit/commands/network.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ describe('NetworkCommand unit tests', () => {
193193
const common = path.join('test', 'data', 'test-values.yaml');
194194
const values1 = path.join('test', 'data', 'test-values1.yaml');
195195
const values2 = path.join('test', 'data', 'test-values2.yaml');
196-
argv[flags.networkDeploymentValuesFile.name] = `${common},cluster=${values1},cluster=${values2}\``;
196+
argv[flags.networkDeploymentValuesFile.name] = `${common},cluster=${values1},cluster=${values2}`;
197197
argv[flags.chartDirectory.name] = 'test-directory';
198198
argv[flags.force.name] = true;
199199

0 commit comments

Comments
 (0)