From 58035f8b246325289e5b6bed4b3456c594458650 Mon Sep 17 00:00:00 2001 From: Pagan Gazzard Date: Fri, 4 Jul 2014 00:46:02 +0100 Subject: [PATCH] Switch from "id" to "Id" to match a docker change.. --- src/supervisor-update.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/supervisor-update.coffee b/src/supervisor-update.coffee index 1a9effff..cdf50b69 100644 --- a/src/supervisor-update.coffee +++ b/src/supervisor-update.coffee @@ -47,10 +47,10 @@ exports.update = -> currentSupervisorImage ]) .spread (localImageInfo, currentSupervisorImage) -> - if localImageInfo.id == currentSupervisorImage + if localImageInfo.Id == currentSupervisorImage utils.mixpanelTrack('Supervisor up to date') return - utils.mixpanelTrack('Supervisor update start', image: localImageInfo.id) + utils.mixpanelTrack('Supervisor update start', image: localImageInfo.Id) docker.createContainerAsync( Image: localImage Cmd: ['/start']