From 05d6aea37f9055b060d143afbfb7367d41ac4863 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 4 Oct 2023 13:06:49 -0600 Subject: [PATCH] remove hard coded timeout --- .../ui/src/app/services/api/embassy-live-api.service.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frontend/projects/ui/src/app/services/api/embassy-live-api.service.ts b/frontend/projects/ui/src/app/services/api/embassy-live-api.service.ts index 775fabf28..63b36aa93 100644 --- a/frontend/projects/ui/src/app/services/api/embassy-live-api.service.ts +++ b/frontend/projects/ui/src/app/services/api/embassy-live-api.service.ts @@ -91,11 +91,7 @@ export class LiveApiService extends ApiService { // server async echo(params: RR.EchoReq, urlOverride?: string): Promise { - return this.rpcRequest( - { method: 'echo', params, timeout: 4000 }, - false, - urlOverride, - ) + return this.rpcRequest({ method: 'echo', params }, false, urlOverride) } openPatchWebsocket$(): Observable> {