From 2a9e5d20f0731163f5ebcafb4ec500adead7f460 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Sat, 13 Jun 2020 06:35:42 -0700 Subject: [PATCH] Set NO_DOWNLOAD in local catalog (#1665) A recent change to config.json (adding the NO_DOWNLOAD flag) requires that the catalog docker environment set `NO_DOWNLOAD` to produce a correct config.json. Co-authored-by: Kevin Moore --- api/python/quilt3/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/python/quilt3/main.py b/api/python/quilt3/main.py index 5436f93a7fd..f79119052b3 100644 --- a/api/python/quilt3/main.py +++ b/api/python/quilt3/main.py @@ -77,6 +77,7 @@ def _launch_local_catalog(): env = dict(REGISTRY_URL="http://localhost:5000", S3_PROXY_URL=open_config["s3Proxy"], ALWAYS_REQUIRE_AUTH="false", + NO_DOWNLOAD="false", CATALOG_MODE="LOCAL", SSO_AUTH="DISABLED", PASSWORD_AUTH="ENABLED",