]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Remove references to Electron
authorChocobozzz <florian.bigard@gmail.com>
Thu, 13 Oct 2016 19:48:55 +0000 (21:48 +0200)
committerChocobozzz <florian.bigard@gmail.com>
Thu, 13 Oct 2016 19:48:55 +0000 (21:48 +0200)
config/default.yaml
config/test.yaml
server/initializers/checker.js
server/initializers/constants.js

index b44be31b0ab2ad92fd0295a161e976e5032901fc..6a1e22204a8cc11135095c95d8f4fcf89a59b9dc 100644 (file)
@@ -18,6 +18,3 @@ storage:
   logs: 'logs/'
   thumbnails: 'thumbnails/'
   torrents: 'torrents/'
-
-electron:
-  debug: false
index 7f893bc4f2d53cda48e648089e946ed796800b2a..8a667a001d6c284066b105ad28f28b55761e1ddd 100644 (file)
@@ -7,6 +7,3 @@ webserver:
 database:
   host: 'localhost'
   port: 27017
-
-electron:
-  debug: false
index 91fbcfaf933ffe2885c491f44dc2e6de7c398f98..85e9bc98b70061aa968616267bf709bae63eeded 100644 (file)
@@ -17,8 +17,8 @@ function checkConfig () {
   const required = [ 'listen.port',
     'webserver.https', 'webserver.host', 'webserver.port',
     'database.host', 'database.port', 'database.suffix',
-    'storage.certs', 'storage.uploads', 'storage.logs', 'storage.thumbnails',
-    'electron.debug' ]
+    'storage.certs', 'storage.uploads', 'storage.logs', 'storage.thumbnails'
+  ]
   const miss = []
 
   for (const key of required) {
index 75065fe7270e2262b9afdc8a7aea588db799c027..09c4f755e723be6fceb567f107ec6b0682385cc3 100644 (file)
@@ -35,9 +35,6 @@ const CONFIG = {
     HOST: config.get('database.host'),
     PORT: config.get('database.port')
   },
-  ELECTRON: {
-    DEBUG: config.get('electron.debug')
-  },
   STORAGE: {
     CERT_DIR: path.join(__dirname, '..', '..', config.get('storage.certs')),
     LOG_DIR: path.join(__dirname, '..', '..', config.get('storage.logs')),
@@ -138,10 +135,6 @@ const USER_ROLES = {
   USER: 'user'
 }
 
-// Seeds in parallel we send to electron when "seed all"
-// Once a video is in seeding state we seed another video etc
-const SEEDS_IN_PARALLEL = 3
-
 // ---------------------------------------------------------------------------
 
 // Special constants for a test instance
@@ -169,7 +162,6 @@ module.exports = {
   REQUESTS_LIMIT,
   RETRY_REQUESTS,
   SEARCHABLE_COLUMNS,
-  SEEDS_IN_PARALLEL,
   SORTABLE_COLUMNS,
   STATIC_PATHS,
   THUMBNAILS_SIZE,