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 7a73bf1 commit febd854Copy full SHA for febd854
docker/mongodb-kubernetes-tests/kubetester/mongodb.py
@@ -385,12 +385,7 @@ def set_oidc_provider_configs(self, oidc_provider_configs: Dict):
385
def append_oidc_provider_config(self, new_config: Dict):
386
if "oidcProviderConfigs" not in self["spec"]["security"]["authentication"]:
387
self["spec"]["security"]["authentication"]["oidcProviderConfigs"] = []
388
-
389
- oidc_configs = self["spec"]["security"]["authentication"]["oidcProviderConfigs"]
390
391
- oidc_configs.append(new_config)
392
393
- self["spec"]["security"]["authentication"]["oidcProviderConfigs"] = oidc_configs
+ self["spec"]["security"]["authentication"]["oidcProviderConfigs"].append(new_config)
394
395
return self
396
0 commit comments