Skip to content

Commit c143986

Browse files
committed
fix: try with a different port
1 parent fbca3e0 commit c143986

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/endpoint/server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const routes = require('./routes')
55

66
class Server {
77
constructor (options) {
8-
options = options || { port: 9999 }
8+
options = options || { port: 30000 }
99

1010
this.server = null
1111
this.port = options.port

src/factory-client.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class FactoryClient {
1010
constructor (options) {
1111
options = options || {}
1212
if (!options.host) { options.host = 'localhost' }
13-
if (!options.port) { options.port = 9999 }
13+
if (!options.port) { options.port = 30000 }
1414
if (typeof options.host === 'number') {
1515
options.port = options.host
1616
options.host = 'localhost'

0 commit comments

Comments
 (0)