skip to Main Content

Masstransit does not fetch messages from azure servicesbus

Hi I have a publisher and consumer The registration for the publisher seems very simple services.AddMassTransit(x => { x.SetKebabCaseEndpointNameFormatter(); x.UsingAzureServiceBus((context, cfg) => { cfg.Host(configInstance.AzureServiceBusSettings.Connectionstring); cfg.AutoStart = true; } ); }); The registration for the consumer looks like this services.AddMassTransit(x =>…

VIEW QUESTION
Back To Top
Search