From 8706c5124a09ba4ad49ca2eb009bdcaec98b7637 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Wed, 9 Mar 2016 09:38:39 -0800 Subject: [PATCH] Remove obsolete comment There is no more race Signed-off-by: Alexander Morozov --- container/monitor.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/container/monitor.go b/container/monitor.go index 914cc1a9e0..afea01fcc9 100644 --- a/container/monitor.go +++ b/container/monitor.go @@ -125,9 +125,6 @@ func (m *containerMonitor) Close() error { // Cleanup networking and mounts m.supervisor.Cleanup(m.container) - // FIXME: here is race condition between two RUN instructions in Dockerfile - // because they share same runconfig and change image. Must be fixed - // in builder/builder.go if err := m.container.ToDisk(); err != nil { logrus.Errorf("Error dumping container %s state to disk: %s", m.container.ID, err)