diff --git a/src/commands/cluster/handlers.ts b/src/commands/cluster/handlers.ts index 0564e2985..805df1473 100644 --- a/src/commands/cluster/handlers.ts +++ b/src/commands/cluster/handlers.ts @@ -22,7 +22,7 @@ import * as ContextFlags from './flags.js'; import {RemoteConfigTasks} from '../../core/config/remote/remote_config_tasks.js'; import type {RemoteConfigManager} from '../../core/config/remote/remote_config_manager.js'; import {connectConfigBuilder, resetConfigBuilder, setupConfigBuilder} from './configs.js'; -import {SoloError} from "../../core/errors.js"; +import {SoloError} from '../../core/errors.js'; export class ClusterCommandHandlers implements CommandHandlers { readonly parent: BaseCommand; @@ -112,9 +112,9 @@ export class ClusterCommandHandlers implements CommandHandlers { ); try { - await action(argv, this); + await action(argv, this); } catch (e: Error | any) { - throw new SoloError('Error on cluster setup', e); + throw new SoloError('Error on cluster setup', e); } return true; @@ -138,9 +138,9 @@ export class ClusterCommandHandlers implements CommandHandlers { ); try { - await action(argv, this); + await action(argv, this); } catch (e: Error | any) { - throw new SoloError('Error on cluster reset', e); + throw new SoloError('Error on cluster reset', e); } return true; }