Created
May 27, 2020 01:05
-
-
Save changhuixu/c4f2706d94cdd12dfd4dcf0f4996c5f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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