-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Installation check should do retries #23739
Comments
@ckairen FYI this is related to the ordering you introduced for java. I think I like the eventual approach @pakrym is proposing here better, since it will make releases easier to kick off in the background. I think we should see if we can find a way to determine whether there is a package we expect to be published before retrying, so we don't stall the release for no reason and make people wait. This might not be possible as I don't think agents have any way to communicate values with each other while running, and additionally I don't know of a way to have a deployment job auto-retry (e.g. schedule to a new agent which would pick up a new variable context). |
@pakrym I'm marking this |
Adjusting tags so that the reports don't yell at me. |
When multiple packages are released from the same pipeline and one depends on another Azure.Core.Experimental -> Azure.Core I tend to kick off both releases at the same time. This causes the
Installation Check
to fail forAzure.Core.Experimental
becauseAzure.Core
is just being published.I think we should loop and try to restore for some time (30m?) before failing the step.
The text was updated successfully, but these errors were encountered: