eba 1.10.0 → 1.10.1
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 +4 -4
- data/lib/eba/bcb.rb +5 -7
- data/lib/eba/version.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89151b822e3b3ef93c3facbab8b4bbc6c2909b5f
|
4
|
+
data.tar.gz: e1def1fd832d5c39ccb11bee0c71d08cfbc89e5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96fd12fab082a247e6200edae5836bebda1b818670364e0aa9034de16f0beee083f8dac97a0081a583367ce6938eff62e45f3950644a381fb229da99fe508efa
|
7
|
+
data.tar.gz: 0fb1a39bd65350a39912002c02a79f484998ee6eb3ff456e9fa0e4d5f9a4c54d0d6b172b8a09a778b7b7a08e2cf8c0f66db08e30cae7e2d8ec57c039ebae43e7
|
data/lib/eba/bcb.rb
CHANGED
@@ -106,15 +106,15 @@ class BCB < Encoder
|
|
106
106
|
begin
|
107
107
|
response = @service.call(:get_ultimo_valor_xml, message: {in0: "#{series_code}"})
|
108
108
|
|
109
|
-
rescue => e
|
109
|
+
rescue Exception => e
|
110
110
|
if e.message.to_s["No such operation 'getUltimoValorXML'"] != nil ||
|
111
111
|
e.message.to_s["Server.userException"] != nil then
|
112
112
|
#This error is expetected, it only means that the code is invalid.
|
113
113
|
|
114
114
|
elsif e.message.to_s["nil:NilClass"] != nil ||
|
115
|
-
e.message.to_s["Connection reset by peer"] != nil
|
116
|
-
|
117
|
-
|
115
|
+
e.message.to_s["Connection reset by peer"] != nil ||
|
116
|
+
e.message.to_s["Failed to open TCP connection"] != nil then
|
117
|
+
puts "Will have to try again, webservice dropped the ball.\nError: #{e.message}"
|
118
118
|
|
119
119
|
else
|
120
120
|
puts "Error requesting last value.\nMessage: #{e.message}\nTrace: #{e.backtrace}"
|
@@ -233,9 +233,7 @@ class BCB < Encoder
|
|
233
233
|
return []
|
234
234
|
|
235
235
|
elsif erro.message.to_s["Socket closed"] != nil then
|
236
|
-
|
237
|
-
puts "\n\nSocket closed for message #{message[:in0][:long]}, trying again."
|
238
|
-
send_message(message)
|
236
|
+
puts "\n\nSocket closed for message #{message[:in0][:long]}, try again."
|
239
237
|
|
240
238
|
else
|
241
239
|
puts "\n\nError requesting all data for the range [#{min_date}, #{max_date}] for codes #{message[:in0][:long]}! #{erro}\nTrace: #{erro.backtrace}\nMessage: #{erro.message}\n"
|
data/lib/eba/version.rb
CHANGED
@@ -5,7 +5,7 @@ module Eba
|
|
5
5
|
# ff - commits on feature
|
6
6
|
# hh - commits on hotfix
|
7
7
|
|
8
|
-
VERSION = "1.10.
|
8
|
+
VERSION = "1.10.1"
|
9
9
|
|
10
10
|
#Version 1.0.1
|
11
11
|
#
|
@@ -73,4 +73,7 @@ module Eba
|
|
73
73
|
#Version 1.10.0
|
74
74
|
# Agressively handles connection errors with BCB webservice, due to detecting a huge
|
75
75
|
# ammount of hangups and such and such erros whilst using the gem.
|
76
|
+
|
77
|
+
#Version 1.10.1
|
78
|
+
# Rolling back on trying to retry every miss on the webservice and just handling errors apropriatelly.
|
76
79
|
end
|