Skip to content

Commit

Permalink
Updates to some typos on the Debug Level logs (#16106)
Browse files Browse the repository at this point in the history
* Updates to some typos on the Debug Level logs

* Updated to the sprint version

* Updated Minor version
  • Loading branch information
FinVamp1 authored Apr 20, 2022
1 parent 65cb9a0 commit 3bdb2ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 3bdb2ec

Please sign in to comment.