Skip to content

Commit

Permalink
Ignore unsupported feature. Fix #15838.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Apr 19, 2024
1 parent 505ae28 commit bb859c1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ public Set<Sharee> handleEntity(final HttpEntity entity) throws IOException {
));
}
catch(HttpResponseException e) {
throw new DefaultHttpResponseExceptionMappingService().map(e);
log.warn(String.format("Failure %s retrieving sharees", e));
return Collections.emptySet();
}
catch(IOException e) {
throw new DefaultIOExceptionMappingService().map(e);
Expand Down

0 comments on commit bb859c1

Please sign in to comment.