Skip to content

Commit

Permalink
Add CHANGELOG entry and fix rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
lagoan committed Mar 17, 2023
1 parent b930398 commit ff4d1f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and releases in PushmiPullyu adheres to [Semantic Versioning](https://semver.org

## [Unreleased]

- Fix URI concatenation for jupiter's base url. [#309](https://github.com/ualbertalib/pushmi_pullyu/issues/309)

## [2.0.5] - 2023-02-17

- Add rescue block to catch exceptions while waiting for next item [#280](https://github.com/ualbertalib/pushmi_pullyu/issues/280)
Expand Down
2 changes: 1 addition & 1 deletion lib/pushmi_pullyu/aip/downloader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def authenticate_http_calls
@uri = URI.parse(PushmiPullyu.options[:jupiter][:jupiter_url])
@http = Net::HTTP.new(@uri.host, @uri.port)
@http.use_ssl = true if @uri.instance_of? URI::HTTPS
request = Net::HTTP::Post.new(URI.join(@uri,'/auth/system'))
request = Net::HTTP::Post.new(URI.join(@uri, '/auth/system'))
request.set_form_data(
email: PushmiPullyu.options[:jupiter][:user],
api_key: PushmiPullyu.options[:jupiter][:api_key]
Expand Down

0 comments on commit ff4d1f6

Please sign in to comment.