summaryrefslogtreecommitdiffstats
path: root/src/retrace/settings.wsgi
diff options
context:
space:
mode:
Diffstat (limited to 'src/retrace/settings.wsgi')
-rw-r--r--src/retrace/settings.wsgi18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/retrace/settings.wsgi b/src/retrace/settings.wsgi
deleted file mode 100644
index 9c906c49..00000000
--- a/src/retrace/settings.wsgi
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-
-from retrace import *
-
-def application(environ, start_response):
- formats = ""
- for format in HANDLE_ARCHIVE.keys():
- formats += " %s" % format
-
- output = [
- "running_tasks %d" % len(get_active_tasks()),
- "max_running_tasks %d" % CONFIG["MaxParallelTasks"],
- "max_packed_size %d" % CONFIG["MaxPackedSize"],
- "max_unpacked_size %d" % CONFIG["MaxUnpackedSize"],
- "supported_formats%s" % formats,
- ]
-
- return response(start_response, "200 OK", "\n".join(output))