Update Keystone v3 usage
diff --git a/openstack/identity/v3/endpoints/requests.go b/openstack/identity/v3/endpoints/requests.go
index 99600ef..91958da 100644
--- a/openstack/identity/v3/endpoints/requests.go
+++ b/openstack/identity/v3/endpoints/requests.go
@@ -5,7 +5,7 @@
"github.com/racker/perigee"
"github.com/rackspace/gophercloud"
- "github.com/rackspace/gophercloud/openstack/utils"
+ "github.com/rackspace/gophercloud/openstack"
"github.com/rackspace/gophercloud/pagination"
)
@@ -98,7 +98,7 @@
return EndpointPage{pagination.LinkedPageBase{PageResult: r}}
}
- u := listURL(client) + utils.BuildQuery(q)
+ u := listURL(client) + openstack.BuildQuery(q)
return pagination.NewPager(client, u, createPage)
}
diff --git a/openstack/identity/v3/services/requests.go b/openstack/identity/v3/services/requests.go
index a70bbd3..0113eb0 100644
--- a/openstack/identity/v3/services/requests.go
+++ b/openstack/identity/v3/services/requests.go
@@ -5,7 +5,7 @@
"github.com/racker/perigee"
"github.com/rackspace/gophercloud"
- "github.com/rackspace/gophercloud/openstack/utils"
+ "github.com/rackspace/gophercloud/openstack"
"github.com/rackspace/gophercloud/pagination"
)
@@ -50,7 +50,7 @@
if opts.PerPage != 0 {
q["perPage"] = strconv.Itoa(opts.PerPage)
}
- u := listURL(client) + utils.BuildQuery(q)
+ u := listURL(client) + openstack.BuildQuery(q)
createPage := func(r pagination.PageResult) pagination.Page {
return ServicePage{pagination.LinkedPageBase{PageResult: r}}