GH Romain Gonord

Results 29 comments of GH Romain Gonord

Would have love to help this project, but i've got no knowledge about Rust :'(

The current implementation can be quite consuming as the watcher would be executed at every cycle. One idea to make it better, if the date has not changed and is...

Hi and thanks for your contribution. Can you remove the dist file from your commit in order to see clearer what changes you've made.

To go further, in addition to the 401 / 403 returned code, having the URL for the login page would be great in a response header. That way the application...

Here is an example of an overrided APIClient: ```java package org.acme.client; import java.io.UnsupportedEncodingException; import java.net.URI; import java.net.URISyntaxException; import java.net.URLEncoder; import java.util.List; import org.springframework.core.ParameterizedTypeReference; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpMethod; import org.springframework.http.MediaType; import...

One other solution that doesn't need overriding ApiClient is to add error management to ResponseErrorHandler: ``` private class RestTemplateResponseErrorHandler implements ResponseErrorHandler { @Override public boolean hasError(ClientHttpResponse httpResponse) throws IOException {...

My main problem is that *handleResponse* obfuscates error in a generic one without details. If we remove that and we get access to the response directly, i guess i should...