From bfa78e0ea4a6511b3753c24bf87b8be40a9ca5e5 Mon Sep 17 00:00:00 2001 From: Ross Cruickshank Date: Wed, 9 Sep 2020 13:21:54 +0100 Subject: [PATCH] remove redundant ; ; after } causing test fail --- storage/mongodb/66-mongodb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/mongodb/66-mongodb.js b/storage/mongodb/66-mongodb.js index 14fafe82..0d03056d 100644 --- a/storage/mongodb/66-mongodb.js +++ b/storage/mongodb/66-mongodb.js @@ -40,7 +40,7 @@ module.exports = function(RED) { url += this.hostname + "/" + this.db + "?retryWrites=true&w=majority"; } else { url += this.hostname + ":" + this.port + "/" + this.db; - }; + } console.log(url); this.url = url;