Skip to content

Commit 3c45ae1

Browse files
committed
Change auth env vars
1 parent 77c318b commit 3c45ae1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mlflow_plugin_proxy_auth/proxy_auth_header_provider.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
class ProxyAuthProvider(RequestAuthProvider):
1111
def __init__(self):
12-
self.username = os.getenv("MLFLOW_TRACKING_USERNAME")
13-
self.password = os.getenv("MLFLOW_TRACKING_PASSWORD")
12+
self.username = os.getenv("MLFLOW_PROXY_USERNAME")
13+
self.password = os.getenv("MLFLOW_PROXY_PASSWORD")
1414

1515
def get_name(self):
1616
return "proxy_auth_provider"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="mlflow-plugin-proxy-auth",
5-
version="0.0.3",
5+
version="0.0.4",
66
packages=find_packages(),
77
install_requires=["mlflow"],
88
entry_points={

0 commit comments

Comments
 (0)