Changed fatal to error and added error handling to promise catch in main

This commit is contained in:
2021-11-26 18:36:35 +01:00
parent c51cfc1b14
commit 3a927688d0
2 changed files with 14 additions and 8 deletions

View File

@@ -8,9 +8,9 @@ function checkHealth(influxDb){
new Influx.HealthAPI(influxDb) // Check influx health
.getHealth()
.catch((err) => {
logger.fatal("Could not communicate with Influx:");
logger.fatal(`Error [${err.code}]:`, err.message);
reject(err);
logger.error("Could not communicate with Influx:");
logger.error(`Error [${err.code}]:`, err.message);
reject();
})
.then((res) => {
logger.debug("Server healthy.", "Version: ", res.version);
@@ -23,9 +23,9 @@ function checkBucket(influxDb, options){
return new Promise((resolve, reject) => {
new Influx.BucketsAPI(influxDb).getBuckets(options)
.catch((err) => { // Weirdly the influx-Api returns 404 for searches of non-existing buckets
logger.fatal("Could not get bucket:");
logger.fatal(`Error [${err.code}]:`, err.message);
reject(err);
logger.error("Could not get bucket:");
logger.error(`Error [${err.code}]:`, err.message);
reject();
}).then((res) => { // But an empty list when the bucket exists, but token does not have permission to get details
logger.debug("Bucket found");
resolve(res);