Skip to content

Commit

Permalink
remove param
Browse files Browse the repository at this point in the history
  • Loading branch information
azuur committed Feb 6, 2024
1 parent 95b07db commit f325d44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ml_pipelines/deployment/aws/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def main(
load_data=False,
)

uvicorn_kwargs: dict = {"host": "0.0.0.0", "reload": False, "debug": False}
uvicorn_kwargs: dict = {"host": "0.0.0.0", "reload": False}
run_serve( # noqa: PLR0913
train_version=train_version,
get_train_artifacts_func=get_train_artifacts_func,
Expand Down
2 changes: 1 addition & 1 deletion ml_pipelines/deployment/local/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def main(
load_data=False,
)

uvicorn_kwargs: dict = {"host": "0.0.0.0", "reload": False, "debug": False}
uvicorn_kwargs: dict = {"host": "0.0.0.0", "reload": False}
run_serve( # noqa: PLR0913
train_version=train_version,
get_train_artifacts_func=get_train_artifacts_func,
Expand Down

0 comments on commit f325d44

Please sign in to comment.