Skip to content

Commit 338423b

Browse files
committed
cleanup TODOs
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent a92305e commit 338423b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/commands/relay.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class RelayCommand extends BaseCommand {
6161
}
6262

6363
nodeIDs.forEach(nodeID => {
64-
const networkKey = `network-${nodeID.trim()}-0-svc:50211` // TODO use render template
64+
const networkKey = `network-${nodeID.trim()}-0:50211`
6565
valuesArg += ` --set config.HEDERA_NETWORK.${networkKey}=0.0.3`
6666
})
6767

src/core/k8.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,9 @@ export class K8 {
419419
}
420420
}
421421
} catch (e) {
422-
this.logger.error(e.message, e)
423-
throw e
422+
const error = new FullstackTestingError(`unable to check file in '${podName}':${containerName}' - ${destPath}: ${e.message}`, e)
423+
this.logger.error(error.message, error)
424+
throw error
424425
}
425426

426427
return false

0 commit comments

Comments
 (0)