From 19f83108d6663632ef7933ed5582036839b770df Mon Sep 17 00:00:00 2001
From: Chris Hines <chris.hines@monash.edu>
Date: Fri, 25 Nov 2022 13:07:37 +1100
Subject: [PATCH] trying to find why novnc keeps closing

---
 twsproxy/__init__.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/twsproxy/__init__.py b/twsproxy/__init__.py
index 115e873..548ff6e 100644
--- a/twsproxy/__init__.py
+++ b/twsproxy/__init__.py
@@ -153,7 +153,7 @@ class TWSProxy(threading.Thread):
         name = threading.current_thread().name
         while not closed:
             r,w,e = select.select([src],[],[],TWSProxy.TIMEOUT)
-            if len(r) > 0:
+            if len(r) > 0 and (not (type(r) == list)):
                 buff = None
                 msglength = -1
                 try:
@@ -172,7 +172,6 @@ class TWSProxy(threading.Thread):
                     TWSProxy.reliablesend(dest,buff,msglength)
                 if msglength == 0:
                     logger.debug('socket shutdown, fh ready to read but 0 bytes returned')
-                    logger.debug(r[0],src)
                     #dest.send(buff)
                     dest.shutdown(shuttype)
                     initshutdown.set()
-- 
GitLab