From 71a4411b22568c5f897be360fab6798f76a05020 Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Fri, 20 Apr 2018 16:50:54 -0700 Subject: [PATCH] Keep polling for alloc stats when a request fails --- ui/app/components/allocation-row.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/components/allocation-row.js b/ui/app/components/allocation-row.js index c173b794c..bf00d4cb5 100644 --- a/ui/app/components/allocation-row.js +++ b/ui/app/components/allocation-row.js @@ -70,9 +70,9 @@ export default Component.extend({ try { const stats = yield allocation.fetchStats(); this.set('stats', stats); + this.set('statsError', false); } catch (error) { this.set('statsError', true); - break; } yield timeout(backoffSequence.shift() || maxTiming); } while (!Ember.testing);