Skip to content

Commit 6a0092f

Browse files
authored
Enable global sync mode in e2e tests again (#2284)
1 parent 82ff4ec commit 6a0092f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

e2e/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ endif
6969
# If the FEATURE_SYNCHRONIZATION_MODE environment variable is not defined the test suite will be randomly enable (1) or disable (0)
7070
# the the global synchronization mode.
7171
ifndef FEATURE_SYNCHRONIZATION_MODE
72-
# ifeq ($(shell shuf -i 0-1 -n 1), 0)
72+
ifeq ($(shell shuf -i 0-1 -n 1), 0)
7373
# Default case
7474
FEATURE_SYNCHRONIZATION_MODE="local"
75-
# else
76-
# FEATURE_SYNCHRONIZATION_MODE="global"
77-
# endif
75+
else
76+
FEATURE_SYNCHRONIZATION_MODE="global"
77+
endif
7878
endif
7979

8080
# Make bash pickier about errors.
@@ -188,13 +188,13 @@ endif
188188
--storage-class="$(STORAGE_CLASS)" \
189189
--enable-chaos-tests=$(ENABLE_CHAOS_TESTS) \
190190
--upgrade-versions=$(UPGRADE_VERSIONS) \
191-
--feature-unified-image=$(FEATURE_UNIFIED_IMAGE) \
192191
--cloud-provider=$(CLOUD_PROVIDER) \
193192
--dump-operator-state=$(DUMP_OPERATOR_STATE) \
194193
--cluster-name=$(CLUSTER_NAME) \
195194
--storage-engine=$(STORAGE_ENGINE) \
196195
--fdb-version-tag-mapping=$(FDB_VERSION_TAG_MAPPING) \
197196
--unified-fdb-image=$(UNIFIED_FDB_IMAGE) \
197+
--feature-unified-image=$(FEATURE_UNIFIED_IMAGE) \
198198
--feature-server-side-apply=$(FEATURE_SERVER_SIDE_APPLY) \
199199
--feature-synchronization-mode=$(FEATURE_SYNCHRONIZATION_MODE) \
200200
--node-selector="$(NODE_SELECTOR)" \

0 commit comments

Comments
 (0)