Skip to content

Commit

Permalink
fix: coderabbit catch
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Sep 17, 2024
1 parent 12d347e commit 87bac3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/router/src/guardian-ui/GuardianApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class GuardianApi {
const attemptConfirmConsensusRunning = async (): Promise<void> => {
try {
if (!this.guardianConfig?.baseUrl) {
throw new Error('fm_config_api not found in config.json');
throw new Error('guardian baseUrl not found in config');
}
await this.connect();
await this.shutdown_internal();
Expand Down Expand Up @@ -296,7 +296,7 @@ export class GuardianApi {
): Promise<T> => {
try {
if (!this.guardianConfig?.baseUrl) {
throw new Error('fm_config_api not found in config.json');
throw new Error('guardian baseUrl not found in config');
}
const websocket = await this.connect();
// console.log('method', method);
Expand Down

0 comments on commit 87bac3e

Please sign in to comment.