Skip to content

Commit

Permalink
fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
motm32 committed Jul 9, 2024
2 parents 52806ff + ab2fbf7 commit 415f552
Show file tree
Hide file tree
Showing 16 changed files with 255 additions and 114 deletions.
153 changes: 88 additions & 65 deletions appservice/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions appservice/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@microsoft/vscode-azext-azureappservice",
"author": "Microsoft Corporation",
"version": "3.2.2",
"version": "3.3.0",
"description": "Common tools for developing Azure App Service extensions for VS Code",
"tags": [
"azure",
Expand Down Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@azure/abort-controller": "^1.0.4",
"@azure/arm-appinsights": "^5.0.0-beta.4",
"@azure/arm-appservice": "^14.0.0",
"@azure/arm-appservice": "^15.0.0",
"@azure/arm-operationalinsights": "^8.0.1",
"@azure/arm-resourcegraph": "^5.0.0-beta.3",
"@azure/arm-resources-subscriptions": "^2.0.1",
Expand All @@ -42,7 +42,7 @@
"@azure/storage-blob": "^12.3.0",
"@microsoft/vscode-azext-azureutils": "^3.0.0",
"@microsoft/vscode-azext-github": "^1.0.0",
"@microsoft/vscode-azext-utils": "^2.2.0",
"@microsoft/vscode-azext-utils": "^2.5.0",
"dayjs": "^1.11.2",
"fs-extra": "^10.0.0",
"p-retry": "^3.0.1",
Expand All @@ -58,7 +58,7 @@
"devDependencies": {
"@azure/core-auth": "^1.4.0",
"@microsoft/eslint-config-azuretools": "^0.2.1",
"@microsoft/vscode-azext-dev": "^2.0.0",
"@microsoft/vscode-azext-dev": "^2.0.4",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
Expand Down
3 changes: 2 additions & 1 deletion appservice/src/deploy/waitForDeploymentToComplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export async function waitForDeploymentToComplete(context: IActionContext & Part
const kuduClient = await site.createClient(context);

const { expectedId, token, locationUrl } = options;
const pollingInterval = options.pollingInterval ?? 5000;
// recommended to poll every second or the deployment id can be recycled before we find it
const pollingInterval = options.pollingInterval ?? 1000;

while (!token?.isCancellationRequested) {
if (locationUrl) {
Expand Down
Loading

0 comments on commit 415f552

Please sign in to comment.