Skip to content

Commit

Permalink
LTI-393: bumped gem tag to solve issue with unique indexes in tools
Browse files Browse the repository at this point in the history
  • Loading branch information
jfederico committed Jun 28, 2024
1 parent 281240b commit 425670b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ gem 'repost', '~> 0.3.8'
gem 'lodash-rails'
gem 'react-rails', '>= 3.2.1'

gem 'rails_lti2_provider', git: 'https://github.com/blindsidenetworks/rails_lti2_provider.git', tag: '0.2.1.1'
gem 'rails_lti2_provider', git: 'https://github.com/blindsidenetworks/rails_lti2_provider.git', tag: '0.2.1.2'

gem 'ims-lti', git: 'https://github.com/blindsidenetworks/ims-lti.git', tag: 'v2.3.2.1'

Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ GIT

GIT
remote: https://github.com/blindsidenetworks/rails_lti2_provider.git
revision: a054554891d8ff5c2c2b1e877f89b9988358dcf5
tag: 0.2.1.1
revision: bb148ac7cb3401fdc8467f19f454eb145a2e946b
tag: 0.2.1.2
specs:
rails_lti2_provider (0.2.1.1)
rails_lti2_provider (0.2.1.2)
ims-lti (~> 2.3.2.1)

GIT
Expand Down
4 changes: 2 additions & 2 deletions app/controllers/registration_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def process_registration_initiation_request
@jwt_header = jwt[:header]
@jwt_body = jwt[:body]
rescue StandardError => e
@error_message = "Error in registrtion initiation request verification: #{e}"
@error_message = "Error in registration initiation request verification: #{e}"
raise CustomError, :registration_verification_failed
end

Expand Down Expand Up @@ -224,7 +224,7 @@ def process_registration_initiation_request
end
rescue StandardError => e
# 3.6.2 Client Registration Error Response
@error_message = "Error in registrtion when persisting: #{e}"
@error_message = "Error in registration when persisting: #{e}"
logger.debug("Error: #{@error_message}")
raise CustomError, :registration_persitence_failed
end
Expand Down

0 comments on commit 425670b

Please sign in to comment.