From 5baf72a01ebc85f55cc9e526a7681a17d51aa61f Mon Sep 17 00:00:00 2001 From: Arik Fraimovich Date: Thu, 11 Aug 2016 15:36:46 +0300 Subject: [PATCH] Change: MongoDB query runner set DB name as mandatory --- redash/query_runner/mongodb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redash/query_runner/mongodb.py b/redash/query_runner/mongodb.py index b83ac160..b49cf9e8 100644 --- a/redash/query_runner/mongodb.py +++ b/redash/query_runner/mongodb.py @@ -82,7 +82,7 @@ class MongoDB(BaseQueryRunner): 'title': 'Replica Set Name' }, }, - 'required': ['connectionString'] + 'required': ['connectionString', 'dbName'] } @classmethod