We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbca3e0 commit c143986Copy full SHA for c143986
src/endpoint/server.js
@@ -5,7 +5,7 @@ const routes = require('./routes')
5
6
class Server {
7
constructor (options) {
8
- options = options || { port: 9999 }
+ options = options || { port: 30000 }
9
10
this.server = null
11
this.port = options.port
src/factory-client.js
@@ -10,7 +10,7 @@ class FactoryClient {
options = options || {}
12
if (!options.host) { options.host = 'localhost' }
13
- if (!options.port) { options.port = 9999 }
+ if (!options.port) { options.port = 30000 }
14
if (typeof options.host === 'number') {
15
options.port = options.host
16
options.host = 'localhost'
0 commit comments