Index: native_client_sdk/src/examples/httpd.py |
diff --git a/native_client_sdk/src/examples/httpd.py b/native_client_sdk/src/examples/httpd.py |
index 2ad1d49438e532f2905d6f7edd68a7e7ddce2f39..e715f5bed22b601ef603a1fba5872b43f27e6b54 100755 |
--- a/native_client_sdk/src/examples/httpd.py |
+++ b/native_client_sdk/src/examples/httpd.py |
@@ -67,6 +67,8 @@ class QuittableHTTPServer(SocketServer.ThreadingMixIn, |
self.is_running = True |
self.timeout = timeout |
while self.is_running: |
+ sys.stderr.flush() |
noelallen1
2012/07/26 21:11:04
Should be harmless, but I would expect stderr to b
|
+ sys.stdout.flush() |
self.handle_request() |
def shutdown(self): |