Skip to content

Commit

Permalink
Merge branch 'master' into alma-deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
JackBlackLight authored Dec 15, 2023
2 parents 512cab8 + 5e63021 commit 0385fa9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ group :development, :test do
gem 'selenium-webdriver', '~> 4.11'
gem 'simplecov', '>= 0.22.0', require: false
gem 'solr_wrapper', '~> 4.0'
gem 'webdrivers', '~> 5.2', require: false
gem 'webdrivers', '~> 5.3.0', require: false
gem 'webmock'
end

Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -616,10 +616,10 @@ GEM
rack (>= 1.4, < 3.0)
warden (1.2.9)
rack (>= 2.0.9)
webdrivers (5.2.0)
webdrivers (5.3.1)
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
selenium-webdriver (~> 4.0)
selenium-webdriver (~> 4.0, < 4.11)
webmock (3.14.0)
addressable (>= 2.8.0)
crack (>= 0.3.2)
Expand Down Expand Up @@ -709,7 +709,7 @@ DEPENDENCIES
uglifier
unicode
voight_kampff
webdrivers (~> 5.2)
webdrivers (~> 5.3.0)
webmock
webpacker (~> 5.4.0)
whenever
Expand Down
4 changes: 4 additions & 0 deletions config/environments/academiccommons_prod.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
# Specifies the header that your server uses for sending files
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'

# Set the CUL load balancer IP as our trusted proxy so that the X-Forwarded-For value set
# by the load balancer is whitelisted for use by the request.remote_ip IP-determining mechanism.
config.action_dispatch.trusted_proxies = [IPAddr.new('128.59.241.217')]

# Reducing logging in production.
config.log_level = :warn

Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
require 'webmock/rspec'
WebMock.disable_net_connect!(
allow_localhost: true,
allow: 'chromedriver.storage.googleapis.com',
allow: ['chromedriver.storage.googleapis.com', 'googlechromelabs.github.io', 'edgedl.me.gvt1.com']
net_http_connect_on_start: true
)

Expand Down

0 comments on commit 0385fa9

Please sign in to comment.