fluent-plugin-sqlquery-ssh 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 783745761f7b0874235b8e93946c8f09845794ad
4
- data.tar.gz: 736147289cd85f28d7e8eda154c229d2b2d244ab
3
+ metadata.gz: 0d91bdb4d5fed73298dc011b03d2c1ae828c2f0f
4
+ data.tar.gz: 311955cafad6936dda016e658d7c83fd2b989611
5
5
  SHA512:
6
- metadata.gz: 82b1ce653d51a8e33138fa5d0336b69366a749b5e9c8a730f35dbb5be57ff4ce01aab4d28f38a5e80b030957960415e78e189aa3f6cfae994c1ab7134a7041f2
7
- data.tar.gz: e3ceb2f54ffab7efa67d100e8a1e533bbb83faf04b3d663b9d31adabbafc0faaec47c063c29e065381cb8f264092e3a1732db41f03c44ca1e33955016966bfff
6
+ metadata.gz: 69dccaff4b94c0c7906779ace52c92cb750551c736ba8fb5946d94f4d23165c54b00a952a172adeca36fe4bd9d5ef3b2911cfdb0a68369503d7a2546ee5c6de9
7
+ data.tar.gz: 6e72e53abfff434c9e3b5705922867cc8842cd5fb0a42a880c4f7bf12b8e2a9523a614ce899792e7029129a0462d81020a76398acadad794be710a88fed595db
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "fluent-plugin-sqlquery-ssh"
6
- s.version = "0.1.10"
6
+ s.version = "0.1.11"
7
7
  s.license = "Apache-2.0"
8
8
  s.authors = "Niall Brown"
9
9
  s.email = "niall.brown@lightspeedretail.com"
@@ -227,7 +227,7 @@ module Fluent::Plugin
227
227
  def get_connection
228
228
  begin
229
229
  $log.info "Opening ssh tunnel to #{@ssh_gateway}\n"
230
- @ssh_gate ||= Net::SSH::Gateway.new(@ssh_gateway, @ssh_username, :verbose => :debug ,:keys => [@ssh_key], :forward_agent => true)
230
+ @ssh_gate ||= Net::SSH::Gateway.new(@ssh_gateway, @ssh_username, :verbose => :debug, :forward_agent => true)
231
231
  @ssh_port = @ssh_gate.open(@host, 3306, @ssh_local_port) || @db_port
232
232
  $log.info "connecting to #{@host}\n"
233
233
  return Mysql2::Client.new({
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-sqlquery-ssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niall Brown