mindsdb / mindsdb_native

Machine Learning in one line of code
http://mindsdb.com
GNU General Public License v3.0
37 stars 28 forks source link

Fix for creating mongo connection with empty username #411

Closed StpMax closed 3 years ago

StpMax commented 3 years ago

Why

It it possible include username and password to connection sting. In that case connection will be created with MongoClient(... ,username=None), which causes an error

How

added case for username=None or username=''