summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/mask_secret.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-28 00:10:34 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-28 00:10:34 +0000
commitba2345d720eac042785d0d5005ff7e2c7d714ced (patch)
treeb09fa7a40aebeab2e009f82d5d3866d324ec1a77 /lib/gitlab/ci/mask_secret.rb
parent29471900730296fbd71ba8a24d3d5bc810cd2529 (diff)
downloadgitlab-ce-ba2345d720eac042785d0d5005ff7e2c7d714ced.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/ci/mask_secret.rb')
-rw-r--r--lib/gitlab/ci/mask_secret.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/gitlab/ci/mask_secret.rb b/lib/gitlab/ci/mask_secret.rb
index 58d55b1bd6f..e5a7151b823 100644
--- a/lib/gitlab/ci/mask_secret.rb
+++ b/lib/gitlab/ci/mask_secret.rb
@@ -8,6 +8,11 @@ module Gitlab
# We assume 'value' must be mutable, given
# that frozen string is enabled.
+
+ ##
+ # TODO We need to remove this because it is going to change checksum of
+ # a trace.
+ #
value.gsub!(token, 'x' * token.length)
value
end