Skip to content

Commit

Permalink
Fix uninitialized constant GoodData::Rest::Connection::ConnectionHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
korczis committed Nov 30, 2016
1 parent b08a307 commit 9c7357e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# GoodData Ruby SDK Changelog

## 0.6.48
- Fix jruby issue with uninitialized constant GoodData::Rest::Connection::ConnectionHelper

## 0.6.47
- Support for GD_MAX_RETRY environment variable for external manual override of maximum retry attempts
- Updated dependencies (gems)
Expand Down
2 changes: 1 addition & 1 deletion lib/gooddata/rest/connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def merge_headers!(headers)
end

def process_response(options = {}, &block)
retries = options[:tries] || ConnectionHelper::GD_MAX_RETRY
retries = options[:tries] || 3 # ConnectionHelper::GD_MAX_RETRY
process = options[:process]
dont_reauth = options[:dont_reauth]
options = options.reject { |k, _| [:process, :dont_reauth].include?(k) }
Expand Down
2 changes: 1 addition & 1 deletion lib/gooddata/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# GoodData Module
module GoodData
VERSION = '0.6.47'
VERSION = '0.6.48'

class << self
# Version
Expand Down

0 comments on commit 9c7357e

Please sign in to comment.