Commit efa367fd authored by Sean McGivern's avatar Sean McGivern Committed by Rémy Coutable

Merge branch '25848-fix-git-rev-list-env-parsing' into 'master'

Reject blank environment variables in Gitlab::Git::RevList

Closes #25848

See merge request !8189
parent 35ba46ee
......@@ -22,7 +22,7 @@ module Gitlab
def valid?
environment_variables.all? do |(name, value)|
value.start_with?(project.repository.path_to_repo)
value.to_s.start_with?(project.repository.path_to_repo)
end
end
......@@ -35,7 +35,7 @@ module Gitlab
end
def environment_variables
@environment_variables ||= env.slice(*ALLOWED_VARIABLES)
@environment_variables ||= env.slice(*ALLOWED_VARIABLES).compact
end
end
end
......
......@@ -26,6 +26,13 @@ describe Gitlab::Git::RevList, lib: true do
expect(rev_list).not_to be_valid
end
it "ignores nil values" do
env = { var => nil }
rev_list = described_class.new('oldrev', 'newrev', project: project, env: env)
expect(rev_list).to be_valid
end
end
end
end
......
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