Skip to content

Instantly share code, notes, and snippets.

@changhuixu
Created May 27, 2020 01:05
Show Gist options
  • Select an option

  • Save changhuixu/c4f2706d94cdd12dfd4dcf0f4996c5f0 to your computer and use it in GitHub Desktop.

Select an option

Save changhuixu/c4f2706d94cdd12dfd4dcf0f4996c5f0 to your computer and use it in GitHub Desktop.
var rabbitHostName = Environment.GetEnvironmentVariable("RABBIT_HOSTNAME");
_connectionFactory = new ConnectionFactory
{
HostName = rabbitHostName ?? "localhost",
Port = 5672,
// ...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment