From: Tom Clegg Date: Wed, 7 Oct 2015 14:01:22 +0000 (-0400) Subject: 6967: Treat blob_signing_key like a secret in `rake config:check`. X-Git-Tag: 1.1.0~1324^2~4 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/e88cbab376ec5e26266ed021193b9d387b14dfa7?hp=7c97dd88e541a0245272b8e93a33e4d2fe4e32cd 6967: Treat blob_signing_key like a secret in `rake config:check`. --- diff --git a/services/api/lib/tasks/config_check.rake b/services/api/lib/tasks/config_check.rake index 1b386556e6..a01e1ea2ab 100644 --- a/services/api/lib/tasks/config_check.rake +++ b/services/api/lib/tasks/config_check.rake @@ -6,7 +6,7 @@ namespace :config do # Make sure we still check for the variable to exist eval("Rails.configuration.#{k}") else - if /(password|secret)/.match(k) then + if /(password|secret|signing_key)/.match(k) then # Make sure we still check for the variable to exist, but don't print the value eval("Rails.configuration.#{k}") $stderr.puts "%-32s %s" % [k, '*********']