Skip to content

Commit 50ec82b

Browse files
Zhan MilenkovZhan Milenkov
Zhan Milenkov
authored and
Zhan Milenkov
committed
remove obsolete comments
1 parent 6a444da commit 50ec82b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/commands/node.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export class NodeCommand extends BaseCommand {
190190
* @returns {Promise<void>}
191191
*/
192192
async close () {
193-
this.accountManager.close() // TODO Review
193+
this.accountManager.close()
194194
if (this._portForwards) {
195195
for (const srv of this._portForwards) {
196196
await this.k8.stopPortForward(srv)

src/core/platform_installer.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ export class PlatformInstaller {
304304
{
305305
title: 'Copy TLS keys',
306306
task: (_, task) =>
307-
self.copyTLSKeys(podName, stagingDir, keyFormat) // TODO keyFormat not expected
307+
self.copyTLSKeys(podName, stagingDir, keyFormat)
308308
},
309309
{
310310
title: 'Set file permissions',

src/core/profile_manager.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import * as semver from 'semver'
2727
import { readFile, writeFile } from 'fs/promises'
2828

2929
const consensusSidecars = [
30-
'recordStreamUploader', 'eventStreamUploader', 'backupUploader', 'accountBalanceUploader', 'otelCollector'] // TODO FIX TYPO ON LAST LORD
30+
'recordStreamUploader', 'eventStreamUploader', 'backupUploader', 'accountBalanceUploader', 'otelCollector']
3131

3232
export class ProfileManager {
3333
/**

0 commit comments

Comments
 (0)