Replace : with _ in cache key versioning

This commit is contained in:
Matija Čupić 2018-01-26 19:15:38 +01:00
parent 6c978c8f28
commit ca05c3a9b6
No known key found for this signature in database
GPG Key ID: 4BAF84FFACD2E5DE
2 changed files with 2 additions and 2 deletions

View File

@ -466,7 +466,7 @@ module Ci
if cache && project.jobs_cache_index
cache = cache.merge(
key: "#{cache[:key]}:#{project.jobs_cache_index}")
key: "#{cache[:key]}_#{project.jobs_cache_index}")
end
[cache]

View File

@ -277,7 +277,7 @@ describe Ci::Build do
allow_any_instance_of(Project).to receive(:jobs_cache_index).and_return(1)
end
it { is_expected.to be_an(Array).and all(include(key: "key:1")) }
it { is_expected.to be_an(Array).and all(include(key: "key_1")) }
end
context 'when project does not have jobs_cache_index' do