network bug workaround test

This commit is contained in:
Sen 2025-05-21 18:45:45 +02:00
parent f6b2fdf422
commit 41fae1317f
4 changed files with 13 additions and 2 deletions

View file

@ -763,6 +763,7 @@ public final class Server implements IThreadListener {
return Futures.<V>immediateFuture(callable.call());
}
catch(Exception exception) {
Log.SYSTEM.error(exception, "Fehler beim sofortigen Ausführen von Server-Task " + callable);
return Futures.immediateFailedFuture(exception);
}
}