mirror of
				https://github.com/jlu5/PyLink.git
				synced 2025-11-04 08:57:25 +01:00 
			
		
		
		
	core: abort autoconnect and socket connectons when the daemon is shutting down
This commit is contained in:
		
							parent
							
								
									82a7b914b6
								
							
						
					
					
						commit
						5c981c83b1
					
				@ -349,6 +349,10 @@ class PyLinkNetworkCore(structures.DeprecatedAttributesObject, structures.CamelC
 | 
			
		||||
 | 
			
		||||
    def _run_autoconnect(self):
 | 
			
		||||
        """Blocks for the autoconnect time and returns True if autoconnect is enabled."""
 | 
			
		||||
        if world.shutting_down.is_set():
 | 
			
		||||
            log.debug('(%s) _run_autoconnect: aborting autoconnect attempt since we are shutting down.', self.name)
 | 
			
		||||
            return
 | 
			
		||||
 | 
			
		||||
        autoconnect = self.serverdata.get('autoconnect')
 | 
			
		||||
 | 
			
		||||
        # Sets the autoconnect growth multiplier (e.g. a value of 2 multiplies the autoconnect
 | 
			
		||||
@ -1478,7 +1482,7 @@ class IRCNetwork(PyLinkNetworkCoreWithUtils):
 | 
			
		||||
        """Main IRC loop which listens for messages."""
 | 
			
		||||
        buf = b""
 | 
			
		||||
        data = b""
 | 
			
		||||
        while not self._aborted.is_set():
 | 
			
		||||
        while (not self._aborted.is_set()) and not world.shutting_down.is_set():
 | 
			
		||||
 | 
			
		||||
            try:
 | 
			
		||||
                data = self._socket.recv(2048)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user