From 063ac4ea0b35860606ec9824fff8215003be6248 Mon Sep 17 00:00:00 2001 From: zmagod Date: Wed, 18 Oct 2017 16:35:02 +0200 Subject: [PATCH] increase polling interval [fixes SCI-1705] --- .../components/Navigation/components/NotificationsDropdown.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/src/components/Navigation/components/NotificationsDropdown.jsx b/app/javascript/src/components/Navigation/components/NotificationsDropdown.jsx index 340bdde43..201717506 100644 --- a/app/javascript/src/components/Navigation/components/NotificationsDropdown.jsx +++ b/app/javascript/src/components/Navigation/components/NotificationsDropdown.jsx @@ -82,7 +82,7 @@ class NotificationsDropdown extends Component { } componentDidMount() { - const minutes = 60 * 1000; + const minutes = 120 * 1000; setInterval(this.loadStatus, minutes); }