We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef15c5f commit 80db724Copy full SHA for 80db724
mongoengine/connection.py
@@ -166,7 +166,9 @@ def _get_connection_settings(
166
kwargs.pop("slaves", None)
167
kwargs.pop("is_slave", None)
168
169
- keys = set(key.lower() for key in kwargs.keys())
+ keys = {
170
+ key.lower() for key in kwargs.keys()
171
+ } # pymongo options are case insensitive
172
if "uuidrepresentation" not in keys:
173
warnings.warn(
174
"No uuidRepresentation is specified! Falling back to "
0 commit comments