From d534bc3e81876fc881d529a11f12520c936e9565 Mon Sep 17 00:00:00 2001 From: Noam Berg Date: Mon, 21 Dec 2020 14:41:52 +0200 Subject: [PATCH] change time of poll to allow 1 hour --- src/api/render-status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/render-status.ts b/src/api/render-status.ts index 21b5e94..132bfa8 100644 --- a/src/api/render-status.ts +++ b/src/api/render-status.ts @@ -6,7 +6,7 @@ import { imageNamesToPollForNewVersions } from '../dockerhub/image-poll'; import { findAllEventsCoveringRange } from '../model/find'; const ETHEREUM_REF_TIME_ALLOWED_DELAY = 20 * 60; // seconds -const DOCKER_HUB_POLL_ALLOWED_DELAY = 20 * 60; // seconds +const DOCKER_HUB_POLL_ALLOWED_DELAY = 60 * 60; // seconds const timeOriginallyLaunched = getCurrentClockTime();