From 45016fc5d2dc27092a0db02ee51fe7b418775e42 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Tue, 17 Dec 2019 17:57:45 +0100 Subject: [PATCH 2/2] hobo: give cubes a slug (#38596) --- bijoe/hobo_agent/management/commands/hobo_deploy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bijoe/hobo_agent/management/commands/hobo_deploy.py b/bijoe/hobo_agent/management/commands/hobo_deploy.py index 4659b22..43a2760 100644 --- a/bijoe/hobo_agent/management/commands/hobo_deploy.py +++ b/bijoe/hobo_agent/management/commands/hobo_deploy.py @@ -82,5 +82,6 @@ class Command(hobo_deploy.Command): config.set(base_url, 'key', key) config.set(base_url, 'schema', schema) config.set(base_url, 'cubes_label', service.get('title').encode('utf-8')) + config.set(base_url, 'cubes_slug', service.get('slug')) with open(ini_file, 'w') as f: config.write(f) -- 2.20.1