From f52d79f9911eedb461479965801062d14cd0422a Mon Sep 17 00:00:00 2001 From: kn0wmad Date: Wed, 8 Mar 2023 21:58:43 -0700 Subject: [PATCH] Stop DDOSing Robosats coordinator with hcks --- scripts/deps.ts | 2 +- scripts/procedures/healthChecks.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deps.ts b/scripts/deps.ts index 3bfd85b..ee0dcd8 100644 --- a/scripts/deps.ts +++ b/scripts/deps.ts @@ -1 +1 @@ -export * from "https://deno.land/x/embassyd_sdk@v0.3.3.0.2/mod.ts"; +export * from "https://deno.land/x/embassyd_sdk@v0.3.3.0.8/mod.ts"; diff --git a/scripts/procedures/healthChecks.ts b/scripts/procedures/healthChecks.ts index 3282b1e..3666f8b 100644 --- a/scripts/procedures/healthChecks.ts +++ b/scripts/procedures/healthChecks.ts @@ -1,5 +1,5 @@ import { types as T, healthUtil } from "../deps.ts"; export const health: T.ExpectedExports.health = { - "web-ui": healthUtil.checkWebUrl("http://robosats.embassy:12596") + "web-ui": healthUtil.checkWebUrl("http://robosats.embassy:12596/selfhosted") }