File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
aztk_cli/spark/endpoints/cluster Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 22my-custom-scripts /
33.aztk
44
5- # Virtual environments
5+ # Environments
6+ .env
7+ .venv
8+ env /
9+ venv /
610ENV /
11+ env.bak /
12+ venv.bak /
713
814# Byte-compiled / optimized / DLL files
915__pycache__ /
Original file line number Diff line number Diff line change 1515 "python.formatting.yapfArgs" : [
1616 " --style=.style.yapf"
1717 ],
18- "python.pythonPath" : " ${workspaceFolder}\\ ENV\\ Scripts\\ python.exe"
18+ "python.venvPath" : " ${workspaceFolder}/.venv/" ,
19+ "python.pythonPath" : " ${workspaceFolder}/.venv/Scripts/python.exe"
1920}
Original file line number Diff line number Diff line change @@ -50,6 +50,10 @@ def execute(args: typing.NamedTuple):
5050 username = args .username ,
5151 password = args .password ,
5252 )))
53+
54+ if args .docker_repo and cluster_conf .toolkit :
55+ cluster_conf .toolkit .docker_repo = args .docker_repo
56+
5357 wait = wait if args .wait is None else args .wait
5458
5559 user_configuration = cluster_conf .user_configuration
You can’t perform that action at this time.
0 commit comments