1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

F #3951: Fix xmlrpc variable

(cherry picked from commit b44911e5fa5b29547600f92a8b1deea22eb0dfbf)
This commit is contained in:
Sergio Betanzos 2021-01-04 11:58:57 +01:00 committed by Tino Vazquez
parent 5b69575993
commit b40a282a1b
3 changed files with 4 additions and 4 deletions

View File

@ -127,4 +127,4 @@
"yup": "^0.29.3",
"zeromq": "^5.2.0"
}
}
}

View File

@ -15,7 +15,7 @@ import {
} from 'fs-extra'
import http from 'http'
import https from 'https'
import {
import {
defaultAppName,
defaultTypeLog,
defaultPort,
@ -50,7 +50,7 @@ const unsecureServer = http.createServer
const secureServer = https.createServer
const app = express()
const basename = defaultAppName? `/${defaultAppName}`: ''
const basename = defaultAppName ? `/${defaultAppName}` : ''
let frontPath = 'client'

View File

@ -58,7 +58,7 @@ if (
defaultOpennebulaZones[0] &&
defaultOpennebulaZones[0].rpc
) {
defaultOpennebulaZones[0].rpc = appConfig.xmlrpc
defaultOpennebulaZones[0].rpc = appConfig.one_xmlrpc
}
const router = express.Router()