Merge branch 'master' into matt/sky-702-remove-website-subpackage-from-webportal

This commit is contained in:
Karol Wypchło 2022-05-27 12:28:21 +02:00 committed by GitHub
commit 286445365d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -71,7 +71,7 @@ require("yargs/yargs")(process.argv.slice(2))
const entry = {
date: new Date().toISOString(),
checks: (await Promise.all(checks.map((check) => new Promise(check)))).map(middleware),
checks: (await Promise.all(checks.map((check) => new Promise(check)))).filter(Boolean).map(middleware),
};
db.read() // read before writing to make sure no external changes are overwritten

View File

@ -122,8 +122,9 @@ async function registryWriteAndReadCheck(done) {
// directServerApiAccessCheck returns the basic server api check on direct server address
async function directServerApiAccessCheck(done) {
if (!process.env.SERVER_DOMAIN) {
return done({ up: false, errors: [{ message: "SERVER_DOMAIN env variable not configured" }] });
// skip if SERVER_DOMAIN is not set or it equals PORTAL_DOMAIN (single server portals)
if (!process.env.SERVER_DOMAIN || process.env.SERVER_DOMAIN === process.env.PORTAL_DOMAIN) {
return done();
}
const [portalAccessCheck, serverAccessCheck] = await Promise.all([