Merge pull request #10752 from thalesmg/fix-pulsar-redact-auth-r50
fix(pulsar): redact error reason
This commit is contained in:
commit
bb4fef3cfd
|
@ -100,7 +100,7 @@ on_start(InstanceId, Config) ->
|
||||||
msg => "failed_to_start_pulsar_client",
|
msg => "failed_to_start_pulsar_client",
|
||||||
instance_id => InstanceId,
|
instance_id => InstanceId,
|
||||||
pulsar_hosts => Servers,
|
pulsar_hosts => Servers,
|
||||||
reason => Reason
|
reason => emqx_utils:redact(Reason, fun is_sensitive_key/1)
|
||||||
}),
|
}),
|
||||||
throw(failed_to_start_pulsar_client)
|
throw(failed_to_start_pulsar_client)
|
||||||
end,
|
end,
|
||||||
|
@ -332,7 +332,7 @@ start_producer(Config, InstanceId, ClientId, ClientOpts) ->
|
||||||
#{
|
#{
|
||||||
instance_id => InstanceId,
|
instance_id => InstanceId,
|
||||||
kind => Kind,
|
kind => Kind,
|
||||||
reason => Error,
|
reason => emqx_utils:redact(Error, fun is_sensitive_key/1),
|
||||||
stacktrace => Stacktrace
|
stacktrace => Stacktrace
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
|
@ -419,3 +419,6 @@ get_producer_status(Producers) ->
|
||||||
|
|
||||||
partition_strategy(key_dispatch) -> first_key_dispatch;
|
partition_strategy(key_dispatch) -> first_key_dispatch;
|
||||||
partition_strategy(Strategy) -> Strategy.
|
partition_strategy(Strategy) -> Strategy.
|
||||||
|
|
||||||
|
is_sensitive_key(auth_data) -> true;
|
||||||
|
is_sensitive_key(_) -> false.
|
||||||
|
|
Loading…
Reference in New Issue