File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5517,3 +5517,9 @@ ERROR: Update failed.
55175517LibClamAV Warning: *** The virus database is older than 7 days! ***
55185518LibClamAV Warning: *** Please update it as soon as possible. ***
55195519LibClamAV 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+
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments