Merge pull request #4417 from tgxworld/api_username_is_useful
FIX: Don't sanitize API username so that we can potentially identify …
This commit is contained in:
commit
70a1d8bce8
|
@ -103,7 +103,6 @@ module Discourse
|
|||
:password,
|
||||
:pop3_polling_password,
|
||||
:api_key,
|
||||
:api_username,
|
||||
:s3_secret_access_key,
|
||||
:twitter_consumer_secret,
|
||||
:facebook_app_secret,
|
||||
|
|
|
@ -49,7 +49,7 @@ class LogAnalyzer
|
|||
private
|
||||
|
||||
def self.sanitize_url(url)
|
||||
url.gsub(/(api_key|api_username)=([\w.\-]+)/, '\1=[FILTERED]')
|
||||
url.gsub(/api_key=([\w.\-]+)/, '\1=[FILTERED]')
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue