-
Notifications
You must be signed in to change notification settings - Fork 263
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
removes remaining references to 'lookup-plugins-in-path' #481
removes remaining references to 'lookup-plugins-in-path' #481
Conversation
/ok-to-test |
@@ -90,7 +90,7 @@ func TestPluginHandler(t *testing.T) { | |||
}) | |||
|
|||
t.Run("when plugin is in $PATH", func(t *testing.T) { | |||
t.Run("--lookup-plugins-in-path=true", func(t *testing.T) { | |||
t.Run("--lookup-plugins=true", func(t *testing.T) { |
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 it that we now have --lookup-plugins
and --no-lookup-plugins
for boolean params ?
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.
From a renaming POV it looks good to me, but shouldn't we switch over to our way to treat boolean values with --lookup-plugins
and --no-lookup-plugins
?
As this PR is not harmful I think we can merge it nevertheless.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: maximilien, rhuss The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
* Remove usage of K8S_CLUSTER_OVERRIDE 1. It was removed in knative#481. 1. This is a dupe of a flag in pkg/test/e2e_flags.go, we should have a single approach for such helpers. * Remove unused import
* Update SPEC file for release v0.17.1 * fix(ci): Pin CI setup to 0.17.x versions * fix(ci): Remove unecessary replace of Eventing imgs
Removes remaining references to 'lookup-plugins-in-path' which is now renamed to the simpler 'lookup-plugins'
Proposed Changes