Disable Toml Deployment Updates (#291)
This commit is contained in:
parent
2df682f3b0
commit
6cafadac9c
1 changed files with 3 additions and 2 deletions
|
|
@ -11,7 +11,6 @@ from rich.console import Console
|
|||
|
||||
from arcade.worker.config.deployment import (
|
||||
create_demo_deployment,
|
||||
update_deployment_with_local_packages,
|
||||
)
|
||||
|
||||
console = Console()
|
||||
|
|
@ -139,4 +138,6 @@ def create_deployment(toolkit_directory: Path, toolkit_name: str) -> None:
|
|||
if not worker_toml.exists():
|
||||
create_demo_deployment(worker_toml, toolkit_name)
|
||||
else:
|
||||
update_deployment_with_local_packages(worker_toml, toolkit_name)
|
||||
pass
|
||||
# Disabled pending bug fix
|
||||
# update_deployment_with_local_packages(worker_toml, toolkit_name)
|
||||
|
|
|
|||
Loading…
Reference in a new issue