You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It queried for a network with EA “network-name = new-net1” in “global” network view but got the network with this name in “default” view. The GET request ignores the body if there are parameters in the query string. This request should have failed but currently passes in our code.
So either all parameters needs to be passed in the body or as query parameters.
This patch passes EA's in body instead of query string because of
the issue infobloxopen#18.
Also Fixes issues where error is not returned when there is error
in the request response body.
This patch passes EA's in body instead of query string because of
the issue infobloxopen#18.
Also Fixes issues where error is not returned when there is error
in the request response body.
* [WIP]Search EA's by passing in body instead of query string
This patch passes EA's in body instead of query string because of
the issue #18.
Also Fixes issues where error is not returned when there is error
in the request response body.
* Search EA's by passing in body instead of query string
This patch passes EA's in body instead of query string because of
the issue #18.
Also Fixes issues where error is not returned when there is error
in the request response body.
* Define new type for the EA Search
This patch defines new type for the EA Search object
and implements MarshalJSON for this type.
* Rename EA Search type from EAS to EASearch
* Use byte(',') instead of []byte(",")
The call
https://github.com/infobloxopen/docker-infoblox/blob/v1.1.0-pre/driver/infoblox_ipam.go#L117
networkByName, err := ibDrv.objMgr.GetNetwork(netview, "", ibclient.EA{"Network Name": networkName})
eventually constructs the URL as
It queried for a network with EA “network-name = new-net1” in “global” network view but got the network with this name in “default” view. The GET request ignores the body if there are parameters in the query string. This request should have failed but currently passes in our code.
So either all parameters needs to be passed in the body or as query parameters.
The text was updated successfully, but these errors were encountered: