-
Notifications
You must be signed in to change notification settings - Fork 83
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
Add boolean field for content_default_http_proxy in HTTProxy entity #1254
base: master
Are you sure you want to change the base?
Add boolean field for content_default_http_proxy in HTTProxy entity #1254
Conversation
nailgun/entities.py
Outdated
@@ -5421,6 +5421,7 @@ def __init__(self, server_config=None, **kwargs): | |||
'organization': entity_fields.OneToManyField(Organization), | |||
'location': entity_fields.OneToManyField(Location), | |||
'cacert': entity_fields.StringField(), | |||
'default_content_http_proxy': entity_fields.BooleanField(), |
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.
'default_content_http_proxy': entity_fields.BooleanField(), | |
'default_content': entity_fields.BooleanField(), |
@Gauravtalreja1, could you provide some functional demonstration with ipython? I tried locally with packit VM for Katello/katello#11183 but I don't get the default_content_http_proxy
on create nor on read back from API. We may need to add it to the ignore list if it's not returned.
Also, I didn't get the setting updated until I used default_content
in the create call.
This pull request has not been updated in the past 45 days. |
@vsedmik How do we proceed here? |
Signed-off-by: Gaurav Talreja <[email protected]>
a837eca
to
ae46f6b
Compare
Description of changes
Change introduced in Katello/katello#11183 and Katello/katello#11266