From d9361f1feefdc90efdd22f4c3bce932a57773f1e Mon Sep 17 00:00:00 2001 From: "roberta@mrspurr" Date: Sun, 28 Aug 2011 19:13:56 +0200 Subject: [PATCH] added test for upload progress --- uploadtest.py | 5 +++-- uwsgi.c | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/uploadtest.py b/uploadtest.py index 4ab4863e..59c68373 100644 --- a/uploadtest.py +++ b/uploadtest.py @@ -1,3 +1,4 @@ +import uuid def application(env, start_response): @@ -15,11 +16,11 @@ def application(env, start_response): else: start_response('200 Ok', [('Content-type', 'text/html')]) return """ -
+
- """ + """ % uuid.uuid4() diff --git a/uwsgi.c b/uwsgi.c index 70852b5c..22848563 100644 --- a/uwsgi.c +++ b/uwsgi.c @@ -1461,7 +1461,7 @@ int uwsgi_start(void *v_argv) { if (!uwsgi.no_initial_output) { if (!uwsgi.master_process) { - uwsgi_log(" *** WARNING: you are running uWSGI without its master process manager ***\n"); + uwsgi_log("*** WARNING: you are running uWSGI without its master process manager ***\n"); } } #ifndef __OpenBSD__