mirror of
https://github.com/clearml/clearml-server
synced 2025-04-05 13:35:02 +00:00
Add admonition in case only username or password were provided
This commit is contained in:
parent
6bf1032237
commit
a96870e092
@ -126,6 +126,10 @@ class ESFactory:
|
|||||||
|
|
||||||
if username and password:
|
if username and password:
|
||||||
cluster_config.set("http_auth", (username, 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
|
return cluster_config
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user