logstash-output-azure_service_bus 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d1ab85ffd5040b91fbe44ed966e44d14b56b7f67e601bacad8728df74d3b79c
4
- data.tar.gz: c09bf977588ee59480e675e408319f5ba8e522760b2d4fa78f23ca6134e6ae27
3
+ metadata.gz: 86afcaf954af103be089a59d6fecb8f6fe4f2d69b5190f7ffd6ad33648a46054
4
+ data.tar.gz: 29e8e7fa58b69b713df750609609a96e4a4f0d2000f37362cae92d20a36104ad
5
5
  SHA512:
6
- metadata.gz: c0423f46cc7f83c93c8ff4c1cbdc334d113f3d711955528cca585ffe41269d193f6c59a151a49e4398a9779b55f0de03831c00a5423ca3f3353e76e194558347
7
- data.tar.gz: 41dd6bf7c6b813ebf3c88a6e1e61c565d200a64b0e78c0ad6d90f68a3115b44c526a1baedde37fdad568c4d10934c9e3698862048c1d2bc9a46152cfbad3e515
6
+ metadata.gz: 242299e9ab1b5bc4ca4adb3af61976d05fe5216331a82b91dad00e19099187faeb0b90daa870b987a404ddbc50af18c13c44344a7adea648f83d967dd1431d64
7
+ data.tar.gz: 31fca87e475ae0e52ff5654f88b59f9a5efa84c739425938c853b4691f50b3ed241306bb7ec249f1e240571b55293a2fd7ee40301043f01d807b112a16057961
@@ -20,7 +20,7 @@ class LogStash::Outputs::AzureServiceBus < LogStash::Outputs::Base
20
20
  retry_statuses: [429, 500],
21
21
  exceptions: [Faraday::ConnectionFailed, Faraday::TimeoutError, Faraday::RetriableResponse],
22
22
  methods: %i[get post],
23
- retry_block: ->(_env, _options, retries, exception) { @logger.error("Error (#{exception}) for #{env.method.upcase} #{env.url} - #{retries + 1} retry(s) left") }
23
+ retry_block: ->(env, _options, retries, exception) { @logger.error("Error (#{exception}) for #{env.method.upcase} #{env.url} - #{retries + 1} retry(s) left") }
24
24
  }
25
25
  @token_conn = Faraday.new(
26
26
  url: 'http://169.254.169.254/metadata/identity/oauth2/token',
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-azure_service_bus'
3
- s.version = '0.1.5'
3
+ s.version = '0.1.6'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = 'Send Logstash messages to Azure Service Bus.'
6
6
  s.homepage = 'https://github.com/gharryg/logstash-output-azure_service_bus'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-azure_service_bus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Harrison Golden