Skip to content
Snippets Groups Projects
Commit 5869fb20 authored by Lin Jen-Shin's avatar Lin Jen-Shin
Browse files

Avoid using the same name with method

parent 9dffd2c0
No related branches found
No related tags found
1 merge request!6019Add a new pipeline email service
Loading
@@ -238,11 +238,11 @@ module Ci
Loading
@@ -238,11 +238,11 @@ module Ci
end end
   
def trace def trace
trace = raw_trace result = raw_trace
if project && trace.present? && project.runners_token.present? if project && result.present? && project.runners_token.present?
trace.gsub(project.runners_token, 'xxxxxx') result.gsub(project.runners_token, 'xxxxxx')
else else
trace result
end end
end end
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment