Skip to content

Commit 8894cf5

Browse files
committed
smoke: decreased retries for data stream event assertions
1 parent d635ce5 commit 8894cf5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

testing/smoke/lib.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,10 @@ data_stream_assert_events() {
183183
local METRICS_INDEX="metrics-apm.internal-*"
184184
local VERSION=${1}
185185
local ENTRIES=${2}
186-
retry 10 assert_document ${ERRORS_INDEX} "error.id" "9876543210abcdeffedcba0123456789" ${VERSION} ${ENTRIES}
187-
retry 10 assert_document ${TRACES_INDEX} "span.id" "1234567890aaaade" ${VERSION} ${ENTRIES}
188-
retry 10 assert_document ${TRACES_INDEX} "transaction.id" "4340a8e0df1906ecbfa9" ${VERSION} ${ENTRIES}
189-
retry 10 assert_document ${METRICS_INDEX} "transaction.type" "request" ${VERSION} ${ENTRIES}
186+
retry 6 assert_document ${ERRORS_INDEX} "error.id" "9876543210abcdeffedcba0123456789" ${VERSION} ${ENTRIES}
187+
retry 6 assert_document ${TRACES_INDEX} "span.id" "1234567890aaaade" ${VERSION} ${ENTRIES}
188+
retry 6 assert_document ${TRACES_INDEX} "transaction.id" "4340a8e0df1906ecbfa9" ${VERSION} ${ENTRIES}
189+
retry 6 assert_document ${METRICS_INDEX} "transaction.type" "request" ${VERSION} ${ENTRIES}
190190
}
191191

192192
healthcheck() {

0 commit comments

Comments
 (0)