xpra icon
Bug tracker and wiki

Changeset 868 in xpra


Ignore:
Timestamp:
05/23/12 17:44:41 (13 months ago)
Author:
antoine
Message:

when we close the connection cleanly, log "empty marker in read queue" at debug level only

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/xpra/protocol.py

    r863 r868  
    374374                buf = self._read_queue.get() 
    375375                if not buf: 
    376                     return self._call_connection_lost("empty marker in read queue") 
     376                    log("read thread: empty marker, exiting") 
     377                    gobject.idle_add(self.close) 
     378                    return 
    377379                #this is the old/unconditional compression code (to be removed): 
    378380                if not self.raw_packets and self._compression_level>0: 
Note: See TracChangeset for help on using the changeset viewer.