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

Unsubscribe from redis topic async #8200

Open
wants to merge 16 commits into
base: main
Choose a base branch
from

Conversation

dannyheard7
Copy link
Contributor

@dannyheard7 dannyheard7 commented Mar 31, 2025

Summary of the changes (Less than 80 chars)

Changes DefaultTopic.OnConnectAsync to return IAsyncDisposable instead of IDisposable (breaking) so that RedisTopic can unsubscribe asynchronously

Closes #8199

@dannyheard7
Copy link
Contributor Author

CONTRIBUTING.md mentions updating the unshipped public api text file, however I can't find this in the repository - if you let me know what needs updating instead then I'll do that

@michaelstaib
Copy link
Member

can you have a look at this PR and amend yours so that its not a breaking change?

#8202

@michaelstaib michaelstaib added the 🍒 cherry-pick Consider cherry-picking these changes into the previous major version. label Mar 31, 2025
@michaelstaib michaelstaib added this to the HC-15.1.4 milestone Mar 31, 2025
@dannyheard7
Copy link
Contributor Author

@michaelstaib Any idea when we could see this merged in / released? We are seeing this cause performance issues in our server

@michaelstaib
Copy link
Member

@dannyheard7 the test still fails.

image

@dannyheard7
Copy link
Contributor Author

Ok i've removed the test as I can't think of a better way to test this and the mock seems flaky on the build server

@michaelstaib
Copy link
Member

Without test we cannot merge it ... we need to verify your change.

@michaelstaib
Copy link
Member

You have forked in a way that we cannot push changes into this PR ... we can take over the PR but than you loose your credits.

@michaelstaib
Copy link
Member

There are three things that need to be tested ...

  1. If you are not implementing IAsyncDisposable the standard dispose is triggered.
  2. If you are implementing IAsyncDisposable the async dispose is triggered.

These two cover the change in the DefaultTopic.

  1. You need to verify that the DisposeAsync works correctly on the RedisTopic you can also use squadron and there is no need to mock.


namespace HotChocolate.Subscriptions;

public class DefaultTopicTests(ITestOutputHelper outputHelper)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🍒 cherry-pick Consider cherry-picking these changes into the previous major version. 🌶️ hot chocolate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unsubscribe from redis subscriptions asynchronously
3 participants