Add cloud pointer to neg linker and backend syncer#811
Add cloud pointer to neg linker and backend syncer#811k8s-ci-robot merged 1 commit intokubernetes:masterfrom
Conversation
|
Hi @spencerhance. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
f5f75ef to
edae1c0
Compare
|
/ok-to-test @spencerhance looks like this needs a rebase |
edae1c0 to
5752113
Compare
|
@rramkumar1 thanks, just fixed it now |
| @@ -43,11 +44,13 @@ var _ Syncer = (*backendSyncer)(nil) | |||
| func NewBackendSyncer( | |||
| backendPool Pool, | |||
There was a problem hiding this comment.
Maybe I'm missing something but doesn't seem like backendPool is used anymore? Can we remove it if that is the case?
There was a problem hiding this comment.
We definitely still use it in the syncer
| @@ -34,11 +36,13 @@ var _ Linker = (*negLinker)(nil) | |||
| func NewNEGLinker( | |||
| backendPool Pool, | |||
There was a problem hiding this comment.
Same comment as above regarding backendPool not being used any longer.
There was a problem hiding this comment.
We only use it in the neg linker test
|
/assign @bowei |
| healthChecker healthchecks.HealthChecker, | ||
| namer *utils.Namer) Syncer { | ||
| namer *utils.Namer, | ||
| cloud *gce.Cloud) Syncer { |
There was a problem hiding this comment.
[go style] we don't break line for args like this
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: bowei, spencerhance The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Remove BackendPool downcast by adding a cloud pointer to the neg linker and backend syncer