Azure Service Bus: Selecting basic tier doesn't seem to work #2947
Answered
by
phatboyg
LeonarddeR
asked this question in
Q&A
-
I have the following extension method to configure MassTransit for service bus in both the producer en consumer projects: public static void UsingConfiguredAzureServiceBus(this IBusRegistrationConfigurator configurator, Action<IBusRegistrationContext, IServiceBusBusFactoryConfigurator> configure = null)
{
configurator.UsingAzureServiceBus((context, cfg) =>
{
var settings = new HostSettings
{
ServiceUri = new Uri("sb://something.servicebus.windows.net/"),
TokenProvider = TokenProvider.CreateManagedIdentityTokenProvider(),
};
cfg.SelectBasicTier();
cfg.Host(settings);
configure?.Invoke(context, cfg);
}); Yet when sending something to an endpoint, I'm getting the following exception:
AM I missing something here? |
Beta Was this translation helpful? Give feedback.
Answered by
phatboyg
Oct 28, 2021
Replies: 1 comment 2 replies
-
https://masstransit-project.com/usage/transports/azure-sb.html Right at the top, basic is not officially supported. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
LeonarddeR
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://masstransit-project.com/usage/transports/azure-sb.html
Right at the top, basic is not officially supported.