Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flask-debug-3933: update to set debug explicitly to False #3956

Merged
merged 10 commits into from
Jun 28, 2024
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

keithkroeger marked this conversation as resolved.
Show resolved Hide resolved
xrmx marked this conversation as resolved.
Show resolved Hide resolved
- Do not execute Flask Tests in debug mode
keithkroeger marked this conversation as resolved.
Show resolved Hide resolved
([#3956](https://github.com/open-telemetry/opentelemetry-python/pull/3956))
- Add Python 3.12 to tox
([#3616](https://github.com/open-telemetry/opentelemetry-python/pull/3616))

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()