cleanup WebRequest
Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Failing after 24s

This commit is contained in:
Lee
2024-04-13 15:41:08 +01:00
parent 471c3e6e80
commit 57601acbb1
3 changed files with 3 additions and 5 deletions

View File

@ -35,7 +35,6 @@ public class WebRequest {
ResponseEntity<T> profile = CLIENT.get()
.uri(url)
.retrieve()
.onStatus(HttpStatusCode::isError, (request, response) -> {}) // Don't throw exceptions on error
.toEntity(clazz);
if (profile.getStatusCode().isError()) {
@ -53,11 +52,11 @@ public class WebRequest {
* @param url the url
* @return the response
*/
public static ResponseEntity<?> getAndIgnoreErrors(String url) {
public static ResponseEntity<?> get(String url, Class<?> clazz) {
return CLIENT.get()
.uri(url)
.retrieve()
.onStatus(HttpStatusCode::isError, (request, response) -> {}) // Don't throw exceptions on error
.toEntity(String.class);
.toEntity(clazz);
}
}