Skip to content

Commit

Permalink
remove rmb error logs
Browse files Browse the repository at this point in the history
  • Loading branch information
0oM4R committed Jan 22, 2024
1 parent e5326a7 commit 8d4e930
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/monitoring/example/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ async function HealthCheck() {
const services: IServiceAliveness[] = [];
services.push(new GridProxyMonitor("<FakeURL>"));
services.push(new TFChainMonitor("wss://tfchain.dev.grid.tf/ws"));
services.push(new RMBMonitor("wss://relay.dev.grid.tf", "wss://tfchain.dev.grid.tf/ws", "", "sr25519"));
services.push(new RMBMonitor("wss://relay.dev.grid.tf", "wss://tfchain.dev.grid.tf/ws", "FakeMnemonic", "sr25519"));
// monitor some services once
await checkServiceAliveness(services);
// keep monitoring services with Interval
await monitorServiceAliveness(services, 5);
// await monitorServiceAliveness(services, 5);

process.exit(0);
} catch (err) {
Expand Down

0 comments on commit 8d4e930

Please sign in to comment.