-
Notifications
You must be signed in to change notification settings - Fork 711
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
Fix race condition in bicep / ARM template #564
Conversation
I see this PR has been merged, but I am still getting the same race error using ARM "Deploy to Azure" option. I am pointing to:
Are these URIs updated w/ the latest fix? Edit: just tried deploying via deploy-azure.ps1 and get the same error. Seems specific to: memorypipeline/MSDeploy |
The URLs are fine. Can you provide your error in #539 ? And you are positive you pulled the latest code before running your deployment, right? I might have to take another look at this problem! |
### Motivation and Context Without this change, virtually all deployments will fail when deploying some of the extensions (MSDeploy or App Insights) for our services. ### Description - Make each service has its own virtualNetworkConnections resource - Add dependsOn clause for the service extensions on their respective virtualNetworkConnections resource - Remove some crud that had accumulated in the template files - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [Contribution Guidelines](https://github.com/microsoft/chat-copilot/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/chat-copilot/blob/main/CONTRIBUTING.md#development-scripts) raises no violations
### Motivation and Context Without this change, virtually all deployments will fail when deploying some of the extensions (MSDeploy or App Insights) for our services. ### Description - Make each service has its own virtualNetworkConnections resource - Add dependsOn clause for the service extensions on their respective virtualNetworkConnections resource - Remove some crud that had accumulated in the template files - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [Contribution Guidelines](https://github.com/microsoft/chat-copilot/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/chat-copilot/blob/main/CONTRIBUTING.md#development-scripts) raises no violations
Motivation and Context
Without this change, virtually all deployments will fail when deploying some of the extensions (MSDeploy or App Insights) for our services.
Description
Make each service has its own virtualNetworkConnections resource
Add dependsOn clause for the service extensions on their respective virtualNetworkConnections resource
Remove some crud that had accumulated in the template files
The code builds clean without any errors or warnings
The PR follows the Contribution Guidelines and the pre-submission formatting script raises no violations