-
Notifications
You must be signed in to change notification settings - Fork 297
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
refs #37923 - Bug fixes & improvements for the Default HTTP proxy #11266
Conversation
c55a9eb
to
55c376d
Compare
Follow up on PR#11183 with: * Unified naming of the parameter ('content_default_http_proxy') * On edit form showing information if the capsule is default * Fixed API + extended show with 'content_default_http_proxy'
55c376d
to
f34a883
Compare
@jeremylenz review please |
@ianballou hi, anyone available for a review? |
I'll double check that this is on our to-do list on Monday |
param :http_proxy, Hash do | ||
param :default_content_proxy, :bool, :required => false, :desc => N_('Set this HTTP proxy as the default content HTTP proxy') | ||
param :content_default_http_proxy, :bool, :required => false, :desc => N_('Set this HTTP proxy as the default content HTTP proxy') |
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.
param :content_default_http_proxy, :bool, :required => false, :desc => N_('Set this HTTP proxy as the default content HTTP proxy') | |
param :default_content_http_proxy, :bool, :required => false, :desc => N_('Set this HTTP proxy as the default content HTTP proxy') |
Should this be the name to be consistent with the UI option?
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.
The setting has the key content_default_http_proxy,
so I'd like to keep it in sync with it.
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.
Working well!
Test failures are unrelated, merging. |
Follow up on #11183 with