Peng
Peng
> Same error. > @pengxiguaa 你是怎么解决的? > > 我在尝试你的 proxySocket.end() to proxySocket.destroy() 我仅仅修改了 ` http-proxy/passes/ws-incoming.js:131` 这一个地方,只是文件句柄数增加得更缓慢了,但并没有解决问题。
Hey, is this problem solved? My website is running on windows server 2016 and I am experiencing the same problem.
似乎已经快两年过去了,这个功能是凉了吗?
先向上滑动一定距离,再猛得向下滑方可问题重现。
This problem is not caused by koa-send. The reason is because I used koa-body and set ``` ctx.body = ctx.request.body ``` This causes the subsequent ``` ctx.body = fs.createReadStream(filePath) ```...
Can be solved by the following methods ### before ``` ctx.set('Content-Length', fileSize); ctx.body = fs.createReadStream(filePath); ``` ### after ``` ctx.body = fs.createReadStream(filePath); ctx.set('Content-Length', fileSize); ```
> Hello, @pxgo > > Is there any way to create multiple streaming URL ? Example: > > Different songs play for the each different URL from different folder. So...