-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Significant parameters shown in GUI. #2164
Comments
FWIW: I worked around this by moving the password to an environment variable and using the parameter to name the environment variable. |
I'm also wondering about this. Could insignificant parameters be hidden from the GUI? |
Title should be "Insignificant parameters shown in GUI" I think the culprit is that in several places, the Task.to_str_params() method is called with the default only_significant=False argument. E.g., in notifications.py, an e-mail body is created that would include insignificant parameters in plain text. Contrast this with deps_tree.py which excludes insignificant parameters. Anything that is going to be displayed for visualization/notification should exclude insignificant / only include significant parameters. |
Is someone working on a PR for this? |
This still happens, any news? |
@edsonduarte1990 There have been many differing opinions around this (and the similar). For the open PR i'm aware of, see #2278 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If closed, you may revisit when your time allows and reopen! Thank you for your contributions. |
Closing, given the merge of #2278 |
The docs state: "An insignificant Parameter might also be used to specify a password or other sensitive information that should not be made public via the scheduler"
However, given this code:
In the GUI when looking at the task I see: "user=myself, password=123456". The password is not hidden.
The text was updated successfully, but these errors were encountered: