Skip to content

Commit 47262f8

Browse files
committed
Enable global sync mode in e2e tests again
1 parent 147ba57 commit 47262f8

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
@@ -66,12 +66,12 @@ endif
6666
# If the FEATURE_SYNCHRONIZATION_MODE environment variable is not defined the test suite will be randomly enable (1) or disable (0)
6767
# the the global synchronization mode.
6868
ifndef FEATURE_SYNCHRONIZATION_MODE
69-
# ifeq ($(shell shuf -i 0-1 -n 1), 0)
69+
ifeq ($(shell shuf -i 0-1 -n 1), 0)
7070
# Default case
7171
FEATURE_SYNCHRONIZATION_MODE="local"
72-
# else
73-
# FEATURE_SYNCHRONIZATION_MODE="global"
74-
# endif
72+
else
73+
FEATURE_SYNCHRONIZATION_MODE="global"
74+
endif
7575
endif
7676

7777
# Make bash pickier about errors.
@@ -185,13 +185,13 @@ endif
185185
--storage-class="$(STORAGE_CLASS)" \
186186
--enable-chaos-tests=$(ENABLE_CHAOS_TESTS) \
187187
--upgrade-versions=$(UPGRADE_VERSIONS) \
188-
--feature-unified-image=$(FEATURE_UNIFIED_IMAGE) \
189188
--cloud-provider=$(CLOUD_PROVIDER) \
190189
--dump-operator-state=$(DUMP_OPERATOR_STATE) \
191190
--cluster-name=$(CLUSTER_NAME) \
192191
--storage-engine=$(STORAGE_ENGINE) \
193192
--fdb-version-tag-mapping=$(FDB_VERSION_TAG_MAPPING) \
194193
--unified-fdb-image=$(UNIFIED_FDB_IMAGE) \
194+
--feature-unified-image=$(FEATURE_UNIFIED_IMAGE) \
195195
--feature-server-side-apply=$(FEATURE_SERVER_SIDE_APPLY) \
196196
--feature-synchronization-mode=$(FEATURE_SYNCHRONIZATION_MODE) \
197197
--seaweedfs-image=$(SEAWEEDFS_IMAGE) $(FEATURE_LOCALITIES_FLAG) $(FEATURE_DNS) \

0 commit comments

Comments
 (0)