This is not a prototype anymore, but a real project!
authorChocobozzz <florian.bigard@gmail.com>
Sat, 18 Feb 2017 17:37:26 +0000 (18:37 +0100)
committerChocobozzz <florian.bigard@gmail.com>
Sun, 26 Feb 2017 19:01:26 +0000 (20:01 +0100)
README.md
server/lib/friends.js
server/lib/request-scheduler.js

index 778762ebf2ab5fcf5edf271fc307007d1aecc1a3..d37e7ae2b77328d0afad149cb8aa336c72d1aa59 100644 (file)
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 </h1>
 
 <h4 align="center">
-Prototype of a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser with <a href="https://github.com/feross/webtorrent">WebTorrent</a>.
+Decentralized video streaming platform using P2P (BitTorrent) directly in the web browser with <a href="https://github.com/feross/webtorrent">WebTorrent</a>.
 </h4>
 
 <p align="center">
@@ -92,7 +92,7 @@ Thanks to [WebTorrent](https://github.com/feross/webtorrent), we can make P2P (t
   - [X] Connection
   - [X] Account rights (upload...)
 - [X] Make the network auto sufficient (eject bad pods etc)
-- [ ] Validate the prototype (test PeerTube in a real world with many pods and videos)
+- [X] Validate the prototype (test PeerTube in a real world)
 - [ ] Manage API breaks
 - [ ] Add "DDOS" security (check if a pod don't send too many requests for example)
 - [X] Admin panel
index 7dfa62a2a9be5c54f46bb51f93bd6a26189a5a6d..d53ab455399c9d79f320b81388f7ead5d71e7c3c 100644 (file)
@@ -14,7 +14,7 @@ const requests = require('../helpers/requests')
 const RequestScheduler = require('./request-scheduler')
 
 const ENDPOINT_ACTIONS = constants.REQUEST_ENDPOINT_ACTIONS[constants.REQUEST_ENDPOINTS.VIDEOS]
-const requestScheduler = new RequestScheduler('')
+const requestScheduler = new RequestScheduler()
 
 const friends = {
   activate,
index c8bc4af288e7de14d482f2329a45326d8b034926..28dabe339c6e5ff6c11ce19da0296ef3ee486296 100644 (file)
@@ -9,9 +9,7 @@ const requests = require('../helpers/requests')
 
 module.exports = class RequestScheduler {
 
-  constructor (name) {
-    this.name = name
-
+  constructor () {
     this.lastRequestTimestamp = 0
     this.timer = null
   }