Skip to content
Snippets Groups Projects
Select Git revision
  • 42b68751a9f4a1be07b51db5c733f3ede2668f2c
  • master default protected
  • th/etcd-patroni
  • th/pgbackrest
4 results

main.yml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    profiling.py 189 B
    #!/usr/bin/python3
    from werkzeug.contrib.profiler import ProfilerMiddleware
    from server import app
    app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
    app.run(debug = True)