-
Notifications
You must be signed in to change notification settings - Fork 41.5k
quick fix to global (and possibly shadowing) client var #8638
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
Conversation
@roberthbailey @justinsb thanks for noting this ! |
okay, tested... working for me.
|
test/e2e/networking.go
Outdated
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.
Can you keep the variable named 'c' so it's consistent with the rest of the e2e tests?
@roberthbailey , implemented your suggestion - good idea to minimize the diffs - done and tested . looks like its working still. |
…h accidentally used it.
LGTM. Thanks for the quick fix. |
quick fix to global (and possibly shadowing) client var
Hey guys ! I mistakenly added a global client variable a while back , was just dutifully noticed by folks in #8630 .
It turns out that this is being used by a few of the tests on accident - people just imported it without checking where it was coming from.
Lets clean this guy up ! heres a PR its untested (still wrapping my head around the new e2e command line options), but i think it will work perfectly.