Skip to content

Commit 379e3fd

Browse files
committed
System Touch
1 parent 5246021 commit 379e3fd

3 files changed

Lines changed: 9 additions & 13 deletions

File tree

logging/clamav.log

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5517,3 +5517,9 @@ ERROR: Update failed.
55175517
LibClamAV Warning: *** The virus database is older than 7 days! ***
55185518
LibClamAV Warning: *** Please update it as soon as possible. ***
55195519
LibClamAV Warning: **************************************************
5520+
[2026-06-15T23:25:29.750897902] freshclam update (exit=10)
5521+
ClamAV update process started at Mon Jun 15 23:25:29 2026
5522+
ERROR: Can't create temporary directory /usr/local/share/clamav/tmp.64678089c8
5523+
Hint: The database directory must be writable for UID 1000 or GID 1000
5524+
ERROR: Update failed.
5525+

source/messaging/MessageQueueSorter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public void run()
4949
{
5050
if (SocketUtils.isConnected(message.SOCKET)
5151
&& this.WEBEXPRESS.TELNET_COMMUNICATION_PROXY != null
52+
&& this.WEBEXPRESS.TELNET_COMMUNICATION_PROXY.isProxyAlive()
5253
&& this.WEBEXPRESS.TELNET_COMMUNICATION_PROXY.writer != null)
5354
{
5455
BufferedWriter writer = this.WEBEXPRESS.TELNET_COMMUNICATION_PROXY.writer;

source/telnet/TelnetCommunicationProxy.java

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,8 @@ public TelnetCommunicationProxy(final WebExpress WEB_EXPRESS)
6363
/** Returns true when the backing process is alive and the writer pipe is open. */
6464
public boolean isProxyAlive()
6565
{
66-
try
67-
{
68-
if (this.process == null || !this.process.isAlive()) return false;
69-
70-
if (this.writer != null) this.writer.flush();
71-
72-
return true;
73-
}
74-
catch (Exception e)
75-
{
76-
ExceptionHandler.dispatch(e);
77-
return false;
78-
}
66+
if (this.process == null || !this.process.isAlive()) return false;
67+
return this.writer != null;
7968
}
8069

8170
public static class TelnetProxyCommunicator extends Thread

0 commit comments

Comments
 (0)