Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
obalandi committed May 23, 2024
1 parent e9af61b commit 8e9c1b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public DelegationResponse sendGetRequest(EndpointDataReference dataReference, St

return new DelegationResponse(sendRequest(newRequest, response), Response.status(response.getStatus()).build());
} else {
monitor.warning(format("Invalid URL", url));
monitor.warning(format("Invalid URL", url.toString()));
return null;
}
}
Expand Down Expand Up @@ -211,7 +211,7 @@ public DelegationResponse sendPostRequest(EndpointDataReference dataReference, S
return new DelegationResponse(sendRequest(newRequest, response), Response.status(response.getStatus()).build());

} else {
monitor.warning(format("Invalid URL", url));
monitor.warning(format("Invalid URL", url.toString()));
return null;
}
}
Expand Down

0 comments on commit 8e9c1b0

Please sign in to comment.