Skip to content

Commit

Permalink
fix variable
Browse files Browse the repository at this point in the history
  • Loading branch information
pluckyswan committed Dec 5, 2024
1 parent a04511c commit fb255a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public String requestDeliveryEndpoint(String inboundReportId, String bearerToken
Map<String, String> headers = Map.of("Authorization", "Bearer " + bearerToken);

try {
String url = RS_DELIVERY_API_URL.replace("{id}", reportId);
String url = RS_DELIVERY_API_URL.replace("{id}", inboundReportId);
return client.get(url, headers);
} catch (HttpClientException e) {
throw new ReportStreamEndpointClientException(
Expand Down

0 comments on commit fb255a9

Please sign in to comment.