-
-
Notifications
You must be signed in to change notification settings - Fork 774
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
base: main
Are you sure you want to change the base?
Conversation
|
can you have a look at this PR and amend yours so that its not a breaking change? |
@michaelstaib Any idea when we could see this merged in / released? We are seeing this cause performance issues in our server |
@dannyheard7 the test still fails. ![]() |
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 |
Without test we cannot merge it ... we need to verify your change. |
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. |
There are three things that need to be tested ...
These two cover the change in the DefaultTopic.
|
|
||
namespace HotChocolate.Subscriptions; | ||
|
||
public class DefaultTopicTests(ITestOutputHelper outputHelper) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good
Summary of the changes (Less than 80 chars)
Changes
DefaultTopic.OnConnectAsync
to returnIAsyncDisposable
instead ofIDisposable
(breaking) so that RedisTopic can unsubscribe asynchronouslyCloses #8199