mirror of
https://github.com/django/daphne.git
synced 2025-07-04 11:53:06 +03:00
Remove sneaky print
This commit is contained in:
parent
fa58375a51
commit
b7b11cb075
|
@ -64,8 +64,7 @@ class AsgiRequest(http.HttpRequest):
|
||||||
if self.META.get('CONTENT_LENGTH', None):
|
if self.META.get('CONTENT_LENGTH', None):
|
||||||
try:
|
try:
|
||||||
self._content_length = int(self.META['CONTENT_LENGTH'])
|
self._content_length = int(self.META['CONTENT_LENGTH'])
|
||||||
except (ValueError, TypeError) as e:
|
except (ValueError, TypeError):
|
||||||
print (self.META)
|
|
||||||
pass
|
pass
|
||||||
# Body handling
|
# Body handling
|
||||||
self._body = message.get("body", b"")
|
self._body = message.get("body", b"")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user