Skip to content

Commit

Permalink
chore: Remove secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
lis-r-barreto committed Jun 23, 2024
1 parent e741c31 commit 41a76e8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,8 @@ def config_mlflow():
Returns:
None
"""
# mlflow_username = os.getenv("MLFLOW_TRACKING_USERNAME")
mlflow_username = "lis-r-barreto"
# mlflow_password = os.getenv("MLFLOW_TRACKING_PASSWORD")
mlflow_password = "4e756087b8703385f28b2787fca9832416cc0c83"
mlflow_username = os.getenv("MLFLOW_TRACKING_USERNAME")
mlflow_password = os.getenv("MLFLOW_TRACKING_PASSWORD")
if not mlflow_username or not mlflow_password:
raise ValueError(
"MLFLOW_TRACKING_USERNAME and MLFLOW_TRACKING_PASSWORD environment variables must be set"
Expand Down

0 comments on commit 41a76e8

Please sign in to comment.