diff options
author | Marius Bobin <mbobin@gitlab.com> | 2019-08-23 08:05:48 +0000 |
---|---|---|
committer | Jan Provaznik <jprovaznik@gitlab.com> | 2019-08-23 08:05:48 +0000 |
commit | d51365efe7378eed087d9d925dec1624cb933ae6 (patch) | |
tree | 4009ee7ace0a88bc945b5fd2f901beb63cb525e9 /spec | |
parent | 8634cca30083746e44121ccef060fd11f548f672 (diff) | |
download | gitlab-ce-d51365efe7378eed087d9d925dec1624cb933ae6.tar.gz |
Exempt `jwt/auth` for user `gitlab-ci-token` from rate limiting
Diffstat (limited to 'spec')
-rw-r--r-- | spec/lib/gitlab/auth_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/auth_spec.rb b/spec/lib/gitlab/auth_spec.rb index edff38f05ec..098c33f9cb1 100644 --- a/spec/lib/gitlab/auth_spec.rb +++ b/spec/lib/gitlab/auth_spec.rb @@ -86,7 +86,7 @@ describe Gitlab::Auth do let(:project) { build.project } before do - expect(gl_auth).to receive(:rate_limit!).with('ip', success: true, login: 'gitlab-ci-token') + expect(gl_auth).not_to receive(:rate_limit!).with('ip', success: true, login: 'gitlab-ci-token') end it 'recognises user-less build' do @@ -106,7 +106,7 @@ describe Gitlab::Auth do let(:project) { build.project } before do - expect(gl_auth).to receive(:rate_limit!).with('ip', success: false, login: 'gitlab-ci-token') + expect(gl_auth).not_to receive(:rate_limit!).with('ip', success: false, login: 'gitlab-ci-token') end it 'denies authentication' do |