Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created May 17, 2020 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/f9c4584ae1c7a6123e3e6582bd3823d1 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/f9c4584ae1c7a6123e3e6582bd3823d1 to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
services
// other registrations omitted for brevity
.AddSingleton(serviceProvider =>
{
var uri = new Uri("amqp://guest:guest@rabbit:5672/CUSTOM_HOST");
return new ConnectionFactory
{
Uri = uri
};
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment