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

Update WaitForResourceHealthyAsync to use DefaultWaitBehavior #7709

Conversation

afscrome
Copy link
Contributor

@afscrome afscrome commented Feb 20, 2025

Description

Follow on to #7650 - this changes makes the default behaviour if you call WaitForResourceHealthyAsync without a WaitBehavior to use DefaultWaitBehavior rather than hardcode WaitOnResourceUnavailable.

This makes the behaviour match WaitForDependenciesAsync when WaitFor is called without a WaitBehavior, as well as improving the testing (or other dashboardless) experience by making WaitForResourceHealthyAsync fail fast in tests when you don't have a way to recover resources if they fail, without needing to explicitly set the WaitBehavior

If this change is not wanted, the default test templates should be updated to include WaitBehavior.StopOnResourceUnavailable as a follow on to #7619

- await app.ResourceNotifications.WaitForResourceHealthyAsync(dependency.Resource.Name).WaitAsync(TimeSpan.FromSeconds(15));
+ await app.ResourceNotifications.WaitForResourceHealthyAsync(dependency.Resource.Name, WaitBehavior.StopOnResourceUnavailable).WaitAsync(TimeSpan.FromSeconds(15));

Fixes #7601

(Pushing this as is to see if any tests break and need adapting to this change in defaults - if any do, I'm expecting them to be tests deep in aspire internals that are unlikely to affect real end user usage, but need to confirm.)

Update: Only one test failed first time, but it passes locally and succeeded on the second run

Checklist

  • Is this feature complete?
    • Yes. Ready to ship.
    • No. Follow-up changes expected.
  • Are you including unit tests for the changes and scenario tests if relevant?
    • Yes
    • No
  • Did you add public API?
    • Yes
      • If yes, did you have an API Review for it?
        • Yes
        • No
      • Did you add <remarks /> and <code /> elements on your triple slash comments?
        • Yes
        • No
    • No
  • Does the change make any security assumptions or guarantees?
    • Yes
      • If yes, have you done a threat model and had a security review?
        • Yes
        • No
    • No
  • Does the change require an update in our Aspire docs?

@dotnet-policy-service dotnet-policy-service bot added the community-contribution Indicates that the PR has been added by a community member label Feb 20, 2025
@afscrome afscrome marked this pull request as draft February 20, 2025 08:57
@afscrome afscrome force-pushed the WaitForResourceHealthyAsyncDefaultWaitBehavior branch from c987af5 to a29edfd Compare February 20, 2025 09:13
@afscrome afscrome marked this pull request as ready for review February 20, 2025 09:30
@afscrome afscrome requested a review from mitchdenny as a code owner February 20, 2025 09:30
@davidfowl davidfowl added this to the 9.1 milestone Feb 21, 2025
@mitchdenny
Copy link
Member

/azp run

Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@mitchdenny
Copy link
Member

Rerunning all jobs just to verify that this is compatible with all latest changes and then I'll merge in.

@mitchdenny mitchdenny merged commit c829499 into dotnet:main Feb 22, 2025
70 checks passed
@mitchdenny
Copy link
Member

/backport to release/9.1

Copy link
Contributor

Started backporting to release/9.1: https://github.com/dotnet/aspire/actions/runs/13467677933

@github-actions github-actions bot added the area-app-model Issues pertaining to the APIs in Aspire.Hosting, e.g. DistributedApplication label Mar 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-app-model Issues pertaining to the APIs in Aspire.Hosting, e.g. DistributedApplication community-contribution Indicates that the PR has been added by a community member
Projects
None yet
Development

Successfully merging this pull request may close these issues.

WaitBehavior being ignored when waiting for resource to be healthy in a test.
3 participants