diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2019-01-14 13:05:24 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2019-01-25 10:33:53 +0100 |
commit | 4967fe945400e0855cda93f06add1e81c0462911 (patch) | |
tree | 5b78b70fe9ea213133fa84294100dbbd57a43da7 /lib | |
parent | 3a8b9aad69dd1b6a54b84a82f51fb81ffbdc5127 (diff) | |
download | gitlab-ce-4967fe945400e0855cda93f06add1e81c0462911.tar.gz |
Do not assigne unused attributes to CI/CD builds
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/ci/yaml_processor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/yaml_processor.rb b/lib/gitlab/ci/yaml_processor.rb index 5515092ccf1..07ba6f83d47 100644 --- a/lib/gitlab/ci/yaml_processor.rb +++ b/lib/gitlab/ci/yaml_processor.rb @@ -55,7 +55,7 @@ module Gitlab instance: job[:instance], start_in: job[:start_in], trigger: job[:trigger] - }.compact } + }.compact }.compact end def stage_builds_attributes(stage) |