We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c956ade commit 81a4ff2Copy full SHA for 81a4ff2
1 file changed
scripts/run_integration_tests.sh
@@ -220,6 +220,8 @@ for handler_name in "${LAMBDA_HANDLERS[@]}"; do
220
# Normalize python-requests version
221
sed -E "s/(User-Agent:python-requests\/)[0-9]+\.[0-9]+\.[0-9]+/\1X\.X\.X/g" |
222
sed -E "s/(\"http.useragent\"\: \"python-requests\/)[0-9]+\.[0-9]+\.[0-9]+/\1X\.X\.X/g" |
223
+ # ddtrace 4.x adds http.status_msg (derived from http.status_code); omit from snapshots
224
+ sed '/"http\.status_msg"/d' |
225
# Strip out trace/span/parent/timestamps
226
sed -E "s/(\"trace_id\"\: \")[A-Z0-9\.\-]+/\1XXXX/g" |
227
sed -E "s/(\"span_id\"\: \")[A-Z0-9\.\-]+/\1XXXX/g" |
0 commit comments