1
0
mirror of synced 2024-11-14 14:33:49 +00:00

Fixed conflicting parameter for port and password in Tapeti.Cmd

This commit is contained in:
Mark van Renswoude 2020-01-24 14:48:16 +01:00
parent 79d353bb8f
commit 0169db5243

View File

@ -14,7 +14,7 @@ namespace Tapeti.Cmd
[Option('h', "host", HelpText = "Hostname of the RabbitMQ server.", Default = "localhost")]
public string Host { get; set; }
[Option('p', "port", HelpText = "AMQP port of the RabbitMQ server.", Default = 5672)]
[Option("port", HelpText = "AMQP port of the RabbitMQ server.", Default = 5672)]
public int Port { get; set; }
[Option('v', "virtualhost", HelpText = "Virtual host used for the RabbitMQ connection.", Default = "/")]