Commit 882a426e authored by Luke Duncalfe's avatar Luke Duncalfe

Merge branch 'revert-5807d22a' into 'master'

Revert "Merge branch 'update-bundler' into 'master'"

See merge request gitlab-org/gitlab!78419
parents 7d0232c5 74d6ff79
......@@ -1673,4 +1673,4 @@ DEPENDENCIES
yajl-ruby (~> 1.4.1)
BUNDLED WITH
2.3.5
2.1.4
......@@ -63,7 +63,6 @@ WORKDIR /home/gitlab/qa
# Install qa dependencies or fetch from cache if unchanged
COPY ./qa/Gemfile* /home/gitlab/qa/
RUN gem install bundler --no-document --conservative --version 2.3.5
RUN bundle install --jobs=$(nproc) --retry=3 --without=development --quiet
##
......
......@@ -355,4 +355,4 @@ DEPENDENCIES
zeitwerk (~> 2.4)
BUNDLED WITH
2.3.5
2.2.33
......@@ -36,7 +36,6 @@ function bundle_install_script() {
exit 1;
fi;
gem install bundler --no-document --conservative --version 2.3.5
bundle --version
bundle config set path "$(pwd)/vendor"
bundle config set clean 'true'
......
......@@ -47,7 +47,7 @@ RSpec.describe 'bin/metrics-server', :aggregate_failures do
if @pid
pgrp = Process.getpgid(@pid)
Timeout.timeout(10) do
Timeout.timeout(5) do
Process.kill('TERM', -pgrp)
Process.waitpid(@pid)
end
......@@ -63,7 +63,7 @@ RSpec.describe 'bin/metrics-server', :aggregate_failures do
it 'serves /metrics endpoint' do
expect do
Timeout.timeout(10) do
Timeout.timeout(5) do
http_ok = false
until http_ok
sleep 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment