-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
fix(infoblox): set view and zone query parameters #3560
fix(infoblox): set view and zone query parameters #3560
Conversation
Welcome @cronik! |
f682a3b
to
5519b79
Compare
I believe this PR partially or completely fixes #3207 |
5519b79
to
9474025
Compare
The recently merged #3301 introduced a regression by defaulting the view query parameter to "default". I tested a query in my environment which does not have a "default" view and it fails with
#3301 also added This PR includes the /kind bug |
The `zone` and `view` search query parameters are not included in record search requests. This can result in more records returned in the query than necessary. For example if more than one zone is returned, rather than issuing a query on each respective zone it is searching all zones on each iteration.
9474025
to
0f2d419
Compare
/ok-to-test |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cronik, szuecs 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 |
/lgtm |
/test pull-external-dns-lint |
Description
The
zone
andview
search query parameters are not included in record search requests. This can result in more records returned in the query than necessary.For example if more than one zone is returned, rather than issuing a query on each respective zone it is searching all zones on each iteration.
In our environment we noticed a reduction in response body size from around 14MB down to 1MB.
Checklist