Closed philipbeadle closed 5 years ago
The issue is that
let port = await getPort({port: getPort.makeRange(10000, 31000)})
returns 10000 each time and thus
await call('admin/interface/add')({id,admin,type,port})
never returns.
I swapped in
let port = Math.floor(Math.random() * (31000 - 10000 + 1)) + 10000
and it now completes the install.
Fixed :)