From 87b8179c31b4f2c95db5bf8935a937bc085584ea Mon Sep 17 00:00:00 2001 From: Tomasz Mielech Date: Tue, 21 Sep 2021 13:47:56 +0200 Subject: [PATCH] adjust changelog and fix Makefile --- CHANGELOG.md | 3 +++ Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7d254a9c..a2c10bf30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ - Fix ArangoSync Liveness Prove - Allow runtime update of Sidecar images - Allow Agent recreation with preserved IDs +- Changing the topics' log level without restarting the container. + When the topic is removed from the argument list then it will not + be turned off in the ArangoDB automatically. ## [1.2.2](https://github.com/arangodb/kube-arangodb/tree/1.2.2) (2021-09-09) - Update 'github.com/arangodb/arangosync-client' dependency to v0.7.0 diff --git a/Makefile b/Makefile index ffb98c58f..c1801f603 100644 --- a/Makefile +++ b/Makefile @@ -123,7 +123,7 @@ ifdef VERBOSE endif EXCLUDE_DIRS := tests vendor .gobuild deps tools -SOURCES_QUERY := find ./ -type f -name '*.go' $(foreach EXCLUDE_DIR,$(EXCLUDE_DIRS), -not -path "./$(EXCLUDE_DIR)/*") +SOURCES_QUERY := find ./ -type f -name '*.go' $(foreach EXCLUDE_DIR,$(EXCLUDE_DIRS), ! -path "./$(EXCLUDE_DIR)/*") SOURCES := $(shell $(SOURCES_QUERY)) DASHBOARDSOURCES := $(shell find $(DASHBOARDDIR)/src -name '*.js') $(DASHBOARDDIR)/package.json