I'm starting a project and plan to use MassTransit to send a message to an Azure Service Bus queue. On the queue itself, I'd like to have a Shared Access Policy that only has 'Send' permission.
I've configured MassTransit in my Startup as it shows in the documentation and used the connection string from the "Send" access policy. When I try to send the message, it appears to complete successfully, but the message never shows up in the queue. The only way I've been able to get it to work is to add 'Manage' permissions to the shared access policy, which also gives 'Listen' permissions to the same policy.
Is there some undocumented configuration where I can use a SAS policy that doesn't have 'Manage' permissions?