infusionsoft 1.1.0b → 1.1.0c
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.
- data/lib/infusionsoft/connection.rb +2 -2
- data/lib/infusionsoft/version.rb +1 -1
- metadata +1 -1
|
@@ -17,8 +17,8 @@ module Infusionsoft
|
|
|
17
17
|
rescue Timeout::Error
|
|
18
18
|
retry_call(@retry_count)
|
|
19
19
|
retry if ok_to_retry
|
|
20
|
-
rescue
|
|
21
|
-
raise(InfusionAPIError, "*** INFUSION API ERROR
|
|
20
|
+
rescue
|
|
21
|
+
#raise(InfusionAPIError, "*** INFUSION API ERROR ***") if ['test', 'development', 'staging'].include?(Rails.env)
|
|
22
22
|
retry_call(@retry_count)
|
|
23
23
|
retry if ok_to_retry
|
|
24
24
|
end
|
data/lib/infusionsoft/version.rb
CHANGED