Merge branch 'master' into 8019-crunchrun-log-throttle
[arvados.git] / sdk / python / arvados / commands / keepdocker.py
index a0dc43ea366f833cb22295dffad985d60b1f521b..57832483236fe5e404e9c64b7d3158336e88cd2d 100644 (file)
@@ -111,8 +111,8 @@ def docker_image_format(image_hash):
 def docker_image_compatible(api, image_hash):
     supported = api._rootDesc.get('dockerImageFormats', [])
     if not supported:
-        logger.warn("server does not specify supported image formats (see docker_image_formats in server config). Continuing.")
-        return True
+        logger.warn("server does not specify supported image formats (see docker_image_formats in server config).")
+        return False
 
     fmt = docker_image_format(image_hash)
     if fmt in supported: