We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent facb0d1 commit 97cbfedCopy full SHA for 97cbfed
api/baremetal/v1/server_utils.go
@@ -248,10 +248,10 @@ func (s *PrivateNetworkAPI) WaitForServerPrivateNetworks(req *WaitForServerPriva
248
for i := range res.ServerPrivateNetworks {
249
_, isTerminal := terminalStatus[res.ServerPrivateNetworks[i].Status]
250
if !isTerminal {
251
- return res, isTerminal, nil
+ return res.ServerPrivateNetworks, isTerminal, nil
252
}
253
254
- return res, true, err
+ return res.ServerPrivateNetworks, true, err
255
},
256
Timeout: timeout,
257
IntervalStrategy: async.LinearIntervalStrategy(retryInterval),
0 commit comments