Skip to content

Commit 7845c84

Browse files
authored
Enable the server side apply feature per default in e2e tests (#2345)
1 parent c27e935 commit 7845c84

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

e2e/Makefile

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,8 @@ CLOUD_PROVIDER?=
3838
UPGRADE_VERSIONS?="$(FDB_VERSION):$(NEXT_FDB_VERSION)"
3939
# Allows to specify the tag for a specific FDB version. Format is 7.1.57:7.1.57-testing,7.3.35:7.3.35-debugging
4040
FDB_VERSION_TAG_MAPPING?=
41-
# If the FEATURE_SERVER_SIDE_APPLY environment variable is not defined the test suite will be randomly enable (1) or disable (0)
42-
# the server side apply feature.
43-
ifndef FEATURE_SERVER_SIDE_APPLY
44-
ifeq ($(shell shuf -i 0-1 -n 1), 0)
45-
FEATURE_SERVER_SIDE_APPLY=false
46-
else
47-
FEATURE_SERVER_SIDE_APPLY=true
48-
endif
49-
endif
41+
# The FEATURE_SERVER_SIDE_APPLY is enabled per default, but could be set to false if wanted.
42+
FEATURE_SERVER_SIDE_APPLY=true
5043

5144
# If the FEATURE_UNIFIED_IMAGE environment variable is not defined the test suite will be randomly enable (1) or disable (0)
5245
# the unified image feature.

0 commit comments

Comments
 (0)