Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-09-20 15:11:04 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-09-20 15:11:04 +0300
commit41a63a43b8d0c498638af0b14cf854d6a446a35b (patch)
treeef76eae534402b4a2a75ba27b5e81153c2582014 /lib/gitlab/doctor
parent9cc74486f532cbcbf9da100ee00bfe00b145971a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/doctor')
-rw-r--r--lib/gitlab/doctor/secrets.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/doctor/secrets.rb b/lib/gitlab/doctor/secrets.rb
index 1a1e9fafb1e..44f5c97c70c 100644
--- a/lib/gitlab/doctor/secrets.rb
+++ b/lib/gitlab/doctor/secrets.rb
@@ -72,7 +72,7 @@ module Gitlab
end
def valid_attribute?(data, attr)
- data.public_send(attr) # rubocop:disable GitlabSecurity/PublicSend
+ data.send(attr) # rubocop:disable GitlabSecurity/PublicSend
true
rescue OpenSSL::Cipher::CipherError, TypeError