-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
will there be huge file upload support ? #1067
Comments
@kxepal would you implement iterative server api, like you've done it for client. |
@asvetlov Sure, will do. This should be easy. |
@asvetlov I fear that would be breaking compatibility change and it'll turn How about to have |
@kxepal yes, you are right. Feel free to add new method. Maybe |
Ok, thanks. |
N.B. Add ticket number to commit message right-before the merge to avoid such kind of spam in log /: |
when uploading huge file ,there is MemoryError as follows.
any plan to fixed this?
ERROR:aiohttp.web:Error handling request
Traceback (most recent call last):
File "D:\soft\prog\python3\python-3.5.1\lib\site-packages\aiohttp\server.py", line 285, in start
yield from self.handle_request(message, payload)
File "D:\soft\prog\python3\python-3.5.1\lib\site-packages\aiohttp\web.py", line 90, in handle_request
resp = yield from handler(request)
File "D:\prog\comp.lang.python\廖2\webfx2.py", line 305, in logger
return await handler(request)
File "D:\prog\comp.lang.python\廖2\webfx2.py", line 320, in auth
return (await handler(request))
File "D:\prog\comp.lang.python\廖2\webfx2.py", line 338, in response
r = await handler(request)
File "D:\soft\prog\python3\python-3.5.1\lib\site-packages\aiohttp\web_urldispatcher.py", line 101, in handler_wrapper
result = yield from result
File "D:\prog\comp.lang.python\廖2\webfx2.py", line 211, in call
params = await request.post()
File "D:\soft\prog\python3\python-3.5.1\lib\site-packages\aiohttp\web_reqrep.py", line 347, in post
body = yield from self.read()
File "D:\soft\prog\python3\python-3.5.1\lib\site-packages\aiohttp\web_reqrep.py", line 307, in read
body.extend(chunk)
MemoryError
The text was updated successfully, but these errors were encountered: