-
Notifications
You must be signed in to change notification settings - Fork 614
Fix warning introduced in #1240 (08a1752) #1249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
postgresql::server::role is a typeBreaking changes to this file WILL impact these 18 modules (exact match):
Breaking changes to this file MAY impact these 6 modules (near match):This module is declared in 71 of 576 indexed public
|
Codecov Report
@@ Coverage Diff @@
## main #1249 +/- ##
===========================================
- Coverage 65.81% 34.64% -31.17%
===========================================
Files 14 14
Lines 351 381 +30
===========================================
- Hits 231 132 -99
- Misses 120 249 +129
Continue to review full report at Codecov.
|
`unless` does not accept a Sensitive parameter, and passing one result in a warning being output: ``` (/Postgresql_psql[ALTER ROLE puppetdb ENCRYPTED PASSWORD ****]) Unable to mark 'unless' as sensitive: unless is a parameter and not a property, and cannot be automatically redacted. ``` This is not really an issue here since this query is not displayed in the logs, even in debug mode.
Cc authors of #1240 : @DavidS @sheenaajay |
@smortex Thanks alot for the quick fix.Much appreciated for your time. |
Since that never was in place, perhaps this should be merged now to avoid the regression (warning). I can't think of a solution that does work. |
Following ticket is opened for sensitive data support needed for unless command |
Following changes added to fix the warning message. Thank you. |
Replaced by #1258 |
unless
does not accept a Sensitive parameter, and passing one result in a warning being output:This is not really an issue here since this query is not displayed in the logs, even in debug mode.