Skip to content

Commit 38d2587

Browse files
authored
flask-debug-3933: update to set debug explicitly to False (#3956)
1 parent 746f7f5 commit 38d2587

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
- Do not execute Flask Tests in debug mode
11+
([#3956](https://github.com/open-telemetry/opentelemetry-python/pull/3956))
1012
- When encountering an error encoding metric attributes in the OTLP exporter, log the key that had an error.
1113
([#3838](https://github.com/open-telemetry/opentelemetry-python/pull/3838))
1214
- Log a warning when a `LogRecord` in `sdk/log` has dropped attributes

tests/w3c_tracecontext_validation_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ def verify_tracecontext():
7070

7171
if __name__ == "__main__":
7272
try:
73-
app.run(debug=True)
73+
app.run(debug=False)
7474
finally:
7575
span_processor.shutdown()

0 commit comments

Comments
 (0)