Add admonition in case only username or password were provided

This commit is contained in:
allegroai 2021-11-15 15:19:07 +02:00
parent 6bf1032237
commit a96870e092

View File

@ -126,6 +126,10 @@ class ESFactory:
if username and password:
cluster_config.set("http_auth", (username, password))
elif not username:
log.info(f"Ignoring username/password since username is empty or not provided")
elif not password:
log.info(f"Ignoring username/password since password is empty or not provided")
return cluster_config