Skip to content

Commit

Permalink
flask-debug-3933: update to set debug explicitly to False (#3956)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithkroeger committed Jun 28, 2024
1 parent 746f7f5 commit 38d2587
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

- Do not execute Flask Tests in debug mode
([#3956](https://github.com/open-telemetry/opentelemetry-python/pull/3956))
- When encountering an error encoding metric attributes in the OTLP exporter, log the key that had an error.
([#3838](https://github.com/open-telemetry/opentelemetry-python/pull/3838))
- Log a warning when a `LogRecord` in `sdk/log` has dropped attributes
Expand Down
2 changes: 1 addition & 1 deletion tests/w3c_tracecontext_validation_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ def verify_tracecontext():

if __name__ == "__main__":
try:
app.run(debug=True)
app.run(debug=False)
finally:
span_processor.shutdown()

0 comments on commit 38d2587

Please sign in to comment.