We migrated to .NET Core and we run a bunch of services using the dotnet CLI. After migrating, all our temporary queues are named <hostname>_dotnet_bus...
.
This is a bit annoying as it's quite difficult to figure out which service some of the error and skipped messages are coming from.
The way I see, there are two options:
- Provide a way to override the default behaviour through Configurator interfaces.
- Change the default behaviour when targeting .NET Standard.
The second options is dead simple and it's my current approach for a local build:
https://github.com/MassTransit/MassTransit/commit/16b884cf6abd08eb8f699667a22fc5e7542bba77
Should this be treated like an issue and raised on MassTransit's Github issue tracker? Thoughts?