From 8175672aab8949737005372da72ca1f2683a3f98 Mon Sep 17 00:00:00 2001 From: Timon G Date: Mon, 23 Mar 2020 00:43:28 +0100 Subject: [PATCH] Increase initial timeout to prevent 500 error (#512) --- src/app/plugin-service/enclosure.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/plugin-service/enclosure.service.ts b/src/app/plugin-service/enclosure.service.ts index 3b09801a7..5677a321d 100644 --- a/src/app/plugin-service/enclosure.service.ts +++ b/src/app/plugin-service/enclosure.service.ts @@ -20,7 +20,7 @@ export class EnclosureService { private notificationService: NotificationService, ) { this.observable = new Observable((observer: Observer): void => { - timer(850, 30000).subscribe((): void => { + timer(2500, 30000).subscribe((): void => { if (this.httpGETRequest) { this.httpGETRequest.unsubscribe(); }