Skip to content

Commit e3c477b

Browse files
serbooxjtopjian
authored andcommitted
Fix ToServerRebootMap() method (gophercloud#1152)
* Fix method * Fix tests
1 parent cdda387 commit e3c477b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

acceptance/openstack/compute/v2/servers_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ func TestServersActionReboot(t *testing.T) {
271271
th.AssertNoErr(t, err)
272272
defer DeleteServer(t, client, server)
273273

274-
rebootOpts := &servers.RebootOpts{
274+
rebootOpts := servers.RebootOpts{
275275
Type: servers.SoftReboot,
276276
}
277277

docs/MIGRATING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* `servers.Reboot` now requires a `servers.RebootOpts` struct:
1717

1818
```golang
19-
rebootOpts := &servers.RebootOpts{
19+
rebootOpts := servers.RebootOpts{
2020
Type: servers.SoftReboot,
2121
}
2222
res := servers.Reboot(client, server.ID, rebootOpts)

openstack/compute/v2/servers/requests.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ type RebootOpts struct {
383383
}
384384

385385
// ToServerRebootMap builds a body for the reboot request.
386-
func (opts *RebootOpts) ToServerRebootMap() (map[string]interface{}, error) {
386+
func (opts RebootOpts) ToServerRebootMap() (map[string]interface{}, error) {
387387
return gophercloud.BuildRequestBody(opts, "reboot")
388388
}
389389

openstack/compute/v2/servers/testing/requests_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ func TestRebootServer(t *testing.T) {
311311
defer th.TeardownHTTP()
312312
HandleRebootSuccessfully(t)
313313

314-
res := servers.Reboot(client.ServiceClient(), "1234asdf", &servers.RebootOpts{
314+
res := servers.Reboot(client.ServiceClient(), "1234asdf", servers.RebootOpts{
315315
Type: servers.SoftReboot,
316316
})
317317
th.AssertNoErr(t, res.Err)

0 commit comments

Comments
 (0)