mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
Fix issue in amqp output when key not defined
This commit is contained in:
parent
c77a0389bb
commit
fb82eba958
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ class LogStash::Outputs::Amqp < LogStash::Outputs::Base
|
|||
config :name, :validate => :string, :required => true
|
||||
|
||||
# Key to route to
|
||||
config :key, :validate => :string
|
||||
config :key, :validate => :string, :default => ""
|
||||
|
||||
# The vhost to use
|
||||
config :vhost, :validate => :string, :default => "/"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue