Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit ae827b2

Browse files
authored
Fix invocation of functionapp in the deployment script (#2645)
1 parent abb7b47 commit ae827b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/deployment/deploy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ def expand_agent(f: str) -> List[str]:
12371237
"--name",
12381238
self.application_name,
12391239
"--resource-group",
1240-
self.application_name,
1240+
self.resource_group,
12411241
"--settings",
12421242
]
12431243
+ python_settings,
@@ -1254,7 +1254,7 @@ def expand_agent(f: str) -> List[str]:
12541254
"--name",
12551255
self.application_name + DOTNET_APPLICATION_SUFFIX,
12561256
"--resource-group",
1257-
self.application_name,
1257+
self.resource_group,
12581258
"--settings",
12591259
]
12601260
+ dotnet_settings,

0 commit comments

Comments
 (0)