We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8493ce0 commit c8de47dCopy full SHA for c8de47d
tests/client/test_config.py
@@ -66,4 +66,11 @@ def test_sanitize(self):
66
"""Test sanitization."""
67
configs = {}
68
processed = config.sanitize('some', configs)
69
- assert processed['redisLocalCacheEnabled'] # check default is True
+ assert processed['redisLocalCacheEnabled'] # check default is True
70
+ assert processed['flagSetsFilter'] is None
71
+
72
+ processed = config.sanitize('some', {'redisHost': 'x', 'flagSetsFilter': ['set']})
73
74
75
+ processed = config.sanitize('some', {'storageType': 'pluggable', 'flagSetsFilter': ['set']})
76
0 commit comments