First couple of print statements for debugging a Heisenbug
This commit is contained in:
parent
f2092ee89c
commit
5dc0333580
1 changed files with 4 additions and 0 deletions
|
|
@ -156,6 +156,8 @@ class UploadStorageFallbackHandler(tornado.web.RequestHandler):
|
||||||
else:
|
else:
|
||||||
self._multipart_boundary = None
|
self._multipart_boundary = None
|
||||||
else:
|
else:
|
||||||
|
print("### In UploadStorageFallbackHandler.prepare, invoking fallback")
|
||||||
|
|
||||||
self._fallback(self.request, b"")
|
self._fallback(self.request, b"")
|
||||||
self._finished = True
|
self._finished = True
|
||||||
|
|
||||||
|
|
@ -411,6 +413,8 @@ class WsgiInputContainer(object):
|
||||||
:param body: an optional body to use as `wsgi.input` instead of `request.body`, can be a string or a stream
|
:param body: an optional body to use as `wsgi.input` instead of `request.body`, can be a string or a stream
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
print("### In WsgiInputContainer.__call__")
|
||||||
|
|
||||||
data = {}
|
data = {}
|
||||||
response = []
|
response = []
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue