Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to some typos on the Debug Level logs #16106

Merged
merged 7 commits into from
Apr 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ export class DeploymentFactory {

public async GetDeploymentProvider(): Promise<IWebAppDeploymentProvider> {
if(this._taskParams.isLinuxApp) {
tl.debug("Depolyment started for linux app service");
tl.debug("Deployment started for linux app service");
if(this._taskParams.isConsumption) {
return new ConsumptionWebAppDeploymentProvider(this._taskParams);
} else {
return new BuiltInLinuxWebAppDeploymentProvider(this._taskParams);
}
} else {
tl.debug("Depolyment started for windows app service");
tl.debug("Deployment started for windows app service");
return await this._getWindowsDeploymentProvider()
}
}
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AzureFunctionAppV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 200,
"Minor": 204,
"Patch": 1
},
"minimumAgentVersion": "2.104.1",
Expand Down