Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upAllow to multiple download much more than 11 torrents #170
Comments
This comment has been minimized.
This comment has been minimized.
|
I'm developing app to search and play music (with node-webkit). I'v done some poor integration with torrent-stream (there was no streaming in webtorrent at the summer). But torrent-stream are not supposed for multiple downloads at all (for example it creates new instance of dht for each torrent). Since I like webtorrent more (it have chrome app support, it's easy to communicate with you) I've switch code to webtorrent, but It is still many problems, so I will make some issues and PRs :) |
This comment has been minimized.
This comment has been minimized.
|
This is not an error, but a warning. It's caused by adding more than 10 listeners for the same event. If you're using node.js 0.11 or later, you can disable the warning across all modules by running this code: var EventEmitter = require('events').EventEmitter
EventEmitter.defaultMaxListeners = 0 |
This comment has been minimized.
This comment has been minimized.
|
I also manually disabled this warning for See webtorrent/bittorrent-dht@894ea22 and 5affbe3 The warnings are still enabled if you run webtorrent with debug logs enabled. See: https://github.com/feross/webtorrent#enable-debug-logs |
This comment has been minimized.
This comment has been minimized.
|
Released as 0.12.1. |
code bellow will rise error