Skip to content

Commit

Permalink
Fix discover-node-selector response (#5043)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjeffers authored Apr 4, 2023
1 parent dfee3cc commit ac2f3f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/src/services/discoveryProvider/DiscoveryProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,8 @@ export class DiscoveryProvider {
response
})) ?? response

return response as unknown as DiscoveryResponse<Response>
const responseBody: DiscoveryResponse<Response> = await response.json()
return responseBody
}

/**
Expand Down

0 comments on commit ac2f3f3

Please sign in to comment.