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

pgbackrest.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)