Browse Source
Mask password for Redis and RedisCluster on connection failure
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/28051/head
Daniel Kesselberg
5 years ago
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614
1 changed files with
6 additions and
0 deletions
-
lib/private/Log/ExceptionSerializer.php
|
|
|
@ -112,6 +112,12 @@ class ExceptionSerializer { |
|
|
|
Key::class => [ |
|
|
|
'__construct' |
|
|
|
], |
|
|
|
\Redis::class => [ |
|
|
|
'auth' |
|
|
|
], |
|
|
|
\RedisCluster::class => [ |
|
|
|
'__construct' |
|
|
|
] |
|
|
|
]; |
|
|
|
|
|
|
|
private function editTrace(array &$sensitiveValues, array $traceLine): array { |
|
|
|
|