Skip to content

Commit 7fc5d61

Browse files
committed
patchInject(k8,>patchInject(K0004,
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent a102c69 commit 7fc5d61

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/core/certificate_manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class CertificateManager {
2828
@inject(InjectTokens.SoloLogger) private readonly logger?: SoloLogger,
2929
@inject(InjectTokens.ConfigManager) private readonly configManager?: ConfigManager,
3030
) {
31-
this.k8 = patchInject(k8, InjectTokens.K0001, this.constructor.name);
31+
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
3232
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
3333
this.configManager = patchInject(configManager, InjectTokens.ConfigManager, this.constructor.name);
3434
}

src/core/cluster_checks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class ClusterChecks {
2222
@inject(InjectTokens.K0001) private readonly K002?: K0003,
2323
) {
2424
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
25-
this.k8 = patchInject(k8, InjectTokens.K0001, this.constructor.name);
25+
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
2626
}
2727

2828
/**

src/core/config/remote/remote_config_manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class RemoteConfigManager {
4949
@inject(InjectTokens.LocalConfig) private readonly localConfig?: LocalConfig,
5050
@inject(InjectTokens.ConfigManager) private readonly configManager?: ConfigManager,
5151
) {
52-
this.k8 = patchInject(k8, InjectTokens.K0001, this.constructor.name);
52+
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
5353
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
5454
this.localConfig = patchInject(localConfig, InjectTokens.LocalConfig, this.constructor.name);
5555
this.configManager = patchInject(configManager, InjectTokens.ConfigManager, this.constructor.name);

src/core/lease/lease_manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class LeaseManager {
3535
) {
3636
this._renewalService = patchInject(_renewalService, InjectTokens.LeaseRenewalService, this.constructor.name);
3737
this._logger = patchInject(_logger, InjectTokens.SoloLogger, this.constructor.name);
38-
this.k8 = patchInject(k8, InjectTokens.K0001, this.constructor.name);
38+
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
3939
this.configManager = patchInject(configManager, InjectTokens.ConfigManager, this.constructor.name);
4040
}
4141

src/core/network_nodes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class NetworkNodes {
2828
@inject(InjectTokens.K0001) private readonly K002?: K0003,
2929
) {
3030
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
31-
this.k8 = patchInject(k8, InjectTokens.K0001, this.constructor.name);
31+
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
3232
}
3333

3434
/**

src/core/platform_installer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class PlatformInstaller {
3434
@inject(InjectTokens.ConfigManager) private configManager?: ConfigManager,
3535
) {
3636
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
37-
this.k8 = patchInject(k8, InjectTokens.K0001, this.constructor.name);
37+
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
3838
this.configManager = patchInject(configManager, InjectTokens.ConfigManager, this.constructor.name);
3939
}
4040

0 commit comments

Comments
 (0)