server: Don't overwrite host, use service-core defaults
continuous-integration/appveyor/branch AppVeyor build succeeded Details

package: Increment version
master v2.0.2
Jonatan Nilsson 2022-03-12 22:45:05 +00:00
parent 1c85867278
commit fbf2f5958c
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export function run(http, orgPort, ctx) {
let port = orgPort || 4000
return server.listenAsync(port, '0.0.0.0')
return server.listenAsync(port)
.then(function() {
ctx.log.event.info(`Server is listening on ${port} serving package ${packagePath}`)
ctx.log.info(`Server is listening on ${port} serving package ${packagePath}`)

View File

@ -1,6 +1,6 @@
{
"name": "sc-helloworld",
"version": "2.0.1",
"version": "2.0.2",
"description": "Hello World app for service core",
"main": "index.js",
"scripts": {