summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/mask_secret.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/mask_secret.rb')
-rw-r--r--lib/gitlab/ci/mask_secret.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/gitlab/ci/mask_secret.rb b/lib/gitlab/ci/mask_secret.rb
index e5a7151b823..062ced9e234 100644
--- a/lib/gitlab/ci/mask_secret.rb
+++ b/lib/gitlab/ci/mask_secret.rb
@@ -9,11 +9,7 @@ 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.gsub!(token, 'x' * token.bytesize)
value
end
end