Skip to content

Commit f435b04

Browse files
committed
fix multiple JDBC libraries bug
1 parent df7f714 commit f435b04

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/filter-jdbc_streaming.asciidoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ JDBC driver class to load, for example "oracle.jdbc.OracleDriver" or "org.apache
178178
* Value type is <<path,path>>
179179
* There is no default value for this setting.
180180

181-
JDBC driver library path to third party driver library.
181+
JDBC driver library path to third party driver library. In case of multiple libraries being
182+
required you can pass them separated by a comma.
182183

183184
[id="plugins-{type}s-{plugin}-jdbc_password"]
184185
===== `jdbc_password`

lib/logstash/plugin_mixins/jdbc_streaming.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def self.included(base)
3232
public
3333
def setup_jdbc_config
3434
# JDBC driver library path to third party driver library.
35-
config :jdbc_driver_library, :validate => :path
35+
config :jdbc_driver_library, :validate => :string
3636

3737
# JDBC driver class to load, for example "oracle.jdbc.OracleDriver" or "org.apache.derby.jdbc.ClientDriver"
3838
config :jdbc_driver_class, :validate => :string, :required => true

0 commit comments

Comments
 (0)