Move catch into then-onRejected to fix resolving then anyways.

f_influx-checks
Ruakij 3 years ago
parent b0bbf0c71a
commit 2356040572

@ -40,12 +40,7 @@ function checkWriteApi(influxDb, options){
const writeApi = influxDb.getWriteApi(options.org, options.bucket); // Get WriteAPI
writeApi.writePoint(new Point("test").tag("ConnectionTest", true).intField("value", 0).timestamp(0)) // Write dummy-point
writeApi.close()
.catch((err) => {
logger.error("Could not get writeApi:");
logger.error(`Error [${err.code}]:`, err.message);
if(err.code == "not found") logger.error("No write-permission?");
reject();
}).then((res) => {
.then((res) => {
logger.debug("Writing ok");
// Delete the connection-text-point
@ -64,6 +59,11 @@ function checkWriteApi(influxDb, options){
reject();
})
.then(resolve())
},
(err) => {
logger.error("Could not get writeApi:");
logger.error(`Error [${err.code}]:`, err.message);
reject();
});
});
}

Loading…
Cancel
Save