Skip to content

Commit

Permalink
[python] fix for flask-poc (#3228)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-papazian authored Oct 14, 2024
1 parent a9f6442 commit 3dffe46
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions utils/build/docker/python/flask/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,9 @@ def hello_world():

@app.route("/healthcheck")
def healthcheck():

return {
"status": "ok",
"library": {
"language": "python",
"version": ddtrace.__version__,
"libddwaf_version": ddtrace.appsec._ddwaf.ddwaf_get_version().decode(),
},
"library": {"language": "python", "version": ddtrace.__version__,},
}


Expand Down

0 comments on commit 3dffe46

Please sign in to comment.