UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

16 lines 768 B
// SPDX-License-Identifier: Apache-2.0 import { SoloError } from '../solo-error.js'; import { ErrorOwnership } from '../error-ownership.js'; import { ErrorCodeRegistry } from '../error-code-registry.js'; export class RemoteConfigsMismatchSoloError extends SoloError { retryable = false; ownership = ErrorOwnership.Infrastructure; constructor(cluster1, cluster2, cause) { super({ message: `Remote configurations in clusters ${cluster1} and ${cluster2} do not match`, code: ErrorCodeRegistry.REMOTE_CONFIGS_MISMATCH, troubleshootingSteps: 'Inspect both configs: kubectl get configmap -n solo\nSync manually before retrying', }, cause); } } //# sourceMappingURL=remote-configs-mismatch-solo-error.js.map