We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 523e00e commit b32b5bdCopy full SHA for b32b5bd
testing/smoke/basic-upgrade/test.sh
@@ -16,7 +16,13 @@ fi
16
MAJOR_VERSION=$(echo ${VERSION} | cut -d '.' -f1 )
17
MINOR_VERSION=$(echo ${VERSION} | cut -d '.' -f2 )
18
19
-if [[ ${MAJOR_VERSION} -eq 8 ]] || [[ ${MAJOR_VERSION} -eq 9 ]]; then
+if [[ ${MAJOR_VERSION} -eq 7 ]]; then
20
+ ASSERT_EVENTS_FUNC=legacy_assertions
21
+ INTEGRATIONS_SERVER=false
22
+ get_latest_patch "${MAJOR_VERSION}.${MINOR_VERSION}"
23
+ LATEST_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${LATEST_PATCH}
24
+ PREV_LATEST_VERSION=$(echo ${MAJOR_VERSION}.${MINOR_VERSION}.$(( ${LATEST_PATCH} -1 )))
25
+elif [[ ${MAJOR_VERSION} -eq 8 ]] || [[ ${MAJOR_VERSION} -eq 9 ]]; then
26
ASSERT_EVENTS_FUNC=data_stream_assertions
27
INTEGRATIONS_SERVER=true
28
0 commit comments