From cbdb0b67abccb8699b2fc5a209a0c53ba4675a00 Mon Sep 17 00:00:00 2001 From: Karsten Hassel Date: Mon, 26 Apr 2021 22:12:16 +0200 Subject: [PATCH] fix updatenotification.js increasing timeout --- CHANGELOG.md | 1 + modules/default/updatenotification/updatenotification.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 261cf696..dbf93dfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ _This release is scheduled to be released on 2021-04-01._ - Fix wrong treatment of `appendLocationNameToHeader` when using `ukmetofficedatahub` - Fix alert not recognizing multiple alerts (#2522) - Fix fetch option httpsAgent to agent in calendar module (#466) +- Fix module updatenotification which did not work for repos with many refs (#1907) ## [2.15.0] - 2021-04-01 diff --git a/modules/default/updatenotification/updatenotification.js b/modules/default/updatenotification/updatenotification.js index e8c0d22e..7d416852 100644 --- a/modules/default/updatenotification/updatenotification.js +++ b/modules/default/updatenotification/updatenotification.js @@ -10,7 +10,7 @@ Module.register("updatenotification", { updateInterval: 10 * 60 * 1000, // every 10 minutes refreshInterval: 24 * 60 * 60 * 1000, // one day ignoreModules: [], - timeout: 1000 + timeout: 5000 }, suspended: false,