We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example config:
sec.protocol /usr/lib64 gsi sec.protocol ztn
is a valid config, but xrdconfig will only show the last entry.
To fix this, xrdconfig should collect all settings in a dict of lists:
from collections import defaultdict result = defaultdict(list) result[var].append(value)
in the code block starting https://github.com/uobdic/xrdconfig/blob/main/src/xrdconfig/cli.py#L54
The output and diff will need to be modified accordingly
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example config:
is a valid config, but xrdconfig will only show the last entry.
To fix this, xrdconfig should collect all settings in a dict of lists:
in the code block starting https://github.com/uobdic/xrdconfig/blob/main/src/xrdconfig/cli.py#L54
The output and diff will need to be modified accordingly
The text was updated successfully, but these errors were encountered: