Ok,
I'll suggest a fix in Streamer.java at lines 103-115:
if
(Application.get().getConfigurationType().equals(RuntimeConfigurationType.DEVELOPMENT))
{
if (e.getClass().getName().contains("Eof")) {
// ignore
} else {
throw new RuntimeException(e);
}
} else {
//in deployment mode we will not report any
ClientAbortExceptions;
if(!
e.getClass().getName().contains("ClientAbortException")) {
throw new RuntimeException(e);
}
}
I'll add it to github in next 1-3 days
On 7 Mai, 16:37, D S <
wicke...@gmail.com> wrote:
> Hi Korbinian,
>
> My log is also full of these errors and I agree that it isn't necessary.
>
> Best,
>
> Dan
>