Fix line length to appease checkstyle
Original commit: elastic/x-pack-elasticsearch@35df54d342
This commit is contained in:
parent
923926ef28
commit
dbbf470734
|
@ -67,7 +67,8 @@ public class SecurityRestFilter implements RestHandler {
|
||||||
channel.sendResponse(new BytesRestResponse(channel, e));
|
channel.sendResponse(new BytesRestResponse(channel, e));
|
||||||
} catch (Exception inner) {
|
} catch (Exception inner) {
|
||||||
inner.addSuppressed(e);
|
inner.addSuppressed(e);
|
||||||
logger.error((Supplier<?>) () -> new ParameterizedMessage("failed to send failure response for uri [{}]", request.uri()), inner);
|
logger.error((Supplier<?>) () ->
|
||||||
|
new ParameterizedMessage("failed to send failure response for uri [{}]", request.uri()), inner);
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue