You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And subscription client.SubscribeAsync<T>(async (msg, context) => // context is null here)
so I cannot use: context.RetryLater(TimeSpan.FromMinutes(5));
Is there anything that i miss during configuration?
The text was updated successfully, but these errors were encountered:
Hello!
I started using RawRabbit and everything worked fine until now.
I want to requeue messages in case of failure like described here:
https://rawrabbit.readthedocs.io/en/master/Delayed-requeue-of-messages.html
Configuration
services.AddSingleton<IBusClient<AdvancedMessageContext>>(client);
And subscription
client.SubscribeAsync<T>(async (msg, context) => // context is null here)
so I cannot use:
context.RetryLater(TimeSpan.FromMinutes(5));
Is there anything that i miss during configuration?
The text was updated successfully, but these errors were encountered: