You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In galera.rb, after the node search is done, this snippet outputs a log entry (line ~69)
log'Chef search results'domessage"Searching for \"#{node['mariadb']['galera']['cluster_search_query']}\"\ resulted in \"#{galera_cluster_nodes}\" ..."end
Which results in the array of galera_cluster_nodes being dumped into the log, including the full structure of node attributes - over 200K of text in our case.
It's possible that we could suppress this with log level tweaking but I'm not sure that 200K of unformatted ruby hash would ever be useful in a log file - plus it could lead to a sensitive data leak depending on what's in the node attributes.
The text was updated successfully, but these errors were encountered:
In galera.rb, after the node search is done, this snippet outputs a log entry (line ~69)
Which results in the array of galera_cluster_nodes being dumped into the log, including the full structure of node attributes - over 200K of text in our case.
It's possible that we could suppress this with log level tweaking but I'm not sure that 200K of unformatted ruby hash would ever be useful in a log file - plus it could lead to a sensitive data leak depending on what's in the node attributes.
The text was updated successfully, but these errors were encountered: