码迷,mamicode.com
首页 > Web开发 > 详细

ERROR:tornado上传文件过大超出范围报错

时间:2018-09-06 18:13:17      阅读:409      评论:0      收藏:0      [点我收藏+]

标签:ons   socket   bin   ESS   bsp   ica   amp   max   code   

 

该怎么解决呢?

HTTPServer里面指定max_buffer_size就可以了

 

EXAMPLE

# server = HTTPServer(application, max_buffer_size=504857600)
# server.bind(port=options.port, address="0.0.0.0")
# server.start(10)  # Forks multiple sub-process
# tornado.ioloop.IOLoop.current().start()


from tornado.netutil import bind_sockets
from tornado.process import fork_processes
sockets = bind_sockets(port=options.port, address="0.0.0.0")
fork_processes(10)
server = HTTPServer(application, max_buffer_size=504857600)
server.add_sockets(sockets)
tornado.ioloop.IOLoop.current().start()

 

ERROR:tornado上传文件过大超出范围报错

标签:ons   socket   bin   ESS   bsp   ica   amp   max   code   

原文地址:https://www.cnblogs.com/renfanzi/p/9599247.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!