Commit c9039135 authored by nanahira's avatar nanahira

fix

parent 8844dd00
Pipeline #245 passed with stages
in 1 minute and 8 seconds
...@@ -102,10 +102,10 @@ async function checkNode(address: string, port: number): Promise<boolean> { ...@@ -102,10 +102,10 @@ async function checkNode(address: string, port: number): Promise<boolean> {
validateStatus: status => status < 500 validateStatus: status => status < 500
}); });
} }
console.log(`Node ${address} is good.`); console.log(`Node ${address}:${port} is good.`);
return true; return true;
} catch (e) { } catch (e) {
console.log(`Node ${address} is bad: ${currentTestDomain} => ${e.toString()}`); console.log(`Node ${address}:${port} is bad: ${currentTestDomain} => ${e.toString()}`);
return false; return false;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment