-
Notifications
You must be signed in to change notification settings - Fork 115
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
use server deploy args #16921
base: master
Are you sure you want to change the base?
use server deploy args #16921
Conversation
trigger: test-robottelo |
1 similar comment
trigger: test-robottelo |
PRT Result
|
@rmynar Could you look into the failures ? |
f78a6fe
to
b4e8587
Compare
if isinstance(param, list): | ||
return [_remove_raw_keys(item) for item in param] | ||
if isinstance(param, dict): | ||
return {k: (_remove_raw_keys(param[k])) for k in param if not k.startswith("raw_")} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this a bit easier to read?
return {k: (_remove_raw_keys(param[k])) for k in param if not k.startswith("raw_")} | |
return {k: _remove_raw_keys(v) for k, v in param.items() if not k.startswith("raw_")} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, looks better. thanks
b4e8587
to
34610cb
Compare
34610cb
to
3a13006
Compare
We were wrongly using content host (client) deploy arguments to deploy rhel which acts as a host for server.