From 7ddb9eb241eb2e2b10c2de987807a1725fee2ec1 Mon Sep 17 00:00:00 2001 From: TeckniX Date: Thu, 11 Jun 2015 20:03:14 -0400 Subject: [PATCH] Fixed stale log refresh Signed-off-by: TeckniX --- src/stores/ContainerStore.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stores/ContainerStore.js b/src/stores/ContainerStore.js index 304fec7131..3899a878e7 100644 --- a/src/stores/ContainerStore.js +++ b/src/stores/ContainerStore.js @@ -3,6 +3,7 @@ import deepExtend from 'deep-extend'; import alt from '../alt'; import containerServerActions from '../actions/ContainerServerActions'; import containerActions from '../actions/ContainerActions'; +var LogStore = require('./LogStore'); class ContainerStore { constructor () { @@ -87,6 +88,8 @@ class ContainerStore { if (!containers[container.Name] || containers[container.Name].State.Updating) { return; } + // Trigger log update + LogStore.fetch(container.Name); containers[container.Name] = container;