From ab647a120f95f60c99b3d98fd963a261f9b227ac Mon Sep 17 00:00:00 2001 From: Michael F Date: Thu, 14 Sep 2023 09:05:22 +0200 Subject: [PATCH] fix: config not loaded for clustermapping --- CHANGELOG.md | 9 +++++++++ Makefile | 2 +- src/tagpack/cli.py | 3 ++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdc8f91..d7c7674 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + +## [23.06/1.7.2] 2023-09-14 +### fixed +- cluster mapping does not use new rerun-cluster-mapping-with-env env + +## [23.06/1.7.1] 2023-09-13 +### fixed +- error on insert when no tagpacks are loaded + ## [23.06/1.7.0] 2023-09-12 ### Added - parallel tagpack insert (-n-workers parameter, default 1 worker) diff --git a/Makefile b/Makefile index 0f17c90..b997e79 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL := /bin/bash PROJECT := tagpack-tool VENV := .venv RELEASE := 'v23.06' -RELEASESEM := 'v1.7.1' +RELEASESEM := 'v1.7.2' all: format lint test build diff --git a/src/tagpack/cli.py b/src/tagpack/cli.py index 2304e0f..088d542 100644 --- a/src/tagpack/cli.py +++ b/src/tagpack/cli.py @@ -987,7 +987,8 @@ def sync_repos(args): "-u", args.url, "--use-gs-lib-config-env", - args.run_cluster_mapping_with_env, + args.run_cluster_mapping_with_env + or args.rerun_cluster_mapping_with_env, "--update" if args.rerun_cluster_mapping_with_env else "", ] )