diff options
author | Erik Johnston <erik@matrix.org> | 2016-01-26 18:27:23 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-01-27 17:33:26 +0000 |
commit | f93ecf87837567a540904e5d6a4280cf453ce7a8 (patch) | |
tree | 2d05b995d4867811526e63d2480a3f253bf3d450 | |
parent | Fix tests (diff) | |
download | synapse-f93ecf87837567a540904e5d6a4280cf453ce7a8.tar.xz |
Don't turn on profiling
-rwxr-xr-x | synapse/app/homeserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index fb76be58a2..504557b2fc 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -651,7 +651,7 @@ def _resource_id(resource, path_seg): def run(hs): - PROFILE_SYNAPSE = True + PROFILE_SYNAPSE = False if PROFILE_SYNAPSE: def profile(func): from cProfile import Profile |