Skip to content

Commit

Permalink
feat: allow SubscriptionManager to config() also "rhsmcertd" keys
Browse files Browse the repository at this point in the history
Signed-off-by: Pino Toscano <[email protected]>
  • Loading branch information
ptoscano committed Jan 22, 2024
1 parent 84d7236 commit b07cb72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_client_tools/subscription_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def run(self, *args, check=True):

def config(self, **kwargs):
args = []
sections = ("server_", "rhsm_", "logging_")
sections = ("server_", "rhsm_", "rhsmcertd_", "logging_")
for k, v in kwargs.items():
if k.startswith(sections) and v is not None:
args.append(f"--{k.replace('_', '.', 1)}={v}")
Expand Down

0 comments on commit b07cb72

Please sign in to comment.