Skip to content

Commit

Permalink
Disabling Flask debug in elmond. This may be causing a very small mem…
Browse files Browse the repository at this point in the history
…ory leak that we saw awhile back
  • Loading branch information
arlake228 committed Oct 19, 2023
1 parent e2d3f97 commit 9b16e2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elmond/perfsonar-elmond/elmond/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ def get_data(metadata_key, event_type, summary_type, summary_window):
return app

if __name__ == '__main__':
create_app().run(debug=True, host='127.0.0.1')
create_app().run(debug=False, host='127.0.0.1')

0 comments on commit 9b16e2e

Please sign in to comment.