Skip to content

Commit

Permalink
test type changed
Browse files Browse the repository at this point in the history
  • Loading branch information
gbkannan89 committed Jul 28, 2023
1 parent d41973a commit ba12ae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions traffic_ops/v5-client/deliveryserviceserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ func (to *Session) AssignServersToDeliveryService(servers []string, xmlID string
}

// GetServersByDeliveryService gets the servers that are assigned to the delivery service with the given ID.
func (to *Session) GetServersByDeliveryService(id int, opts RequestOptions) (tc.DSServerResponseV4, toclientlib.ReqInf, error) {
func (to *Session) GetServersByDeliveryService(id int, opts RequestOptions) (tc.DSServerResponseV5, toclientlib.ReqInf, error) {
route := fmt.Sprintf(apiDeliveryServicesServers, strconv.Itoa(id))
resp := tc.DSServerResponseV4{}
resp := tc.DSServerResponseV5{}
reqInf, err := to.get(route, opts, &resp)
return resp, reqInf, err
}
Expand Down

0 comments on commit ba12ae1

Please sign in to comment.