Show
Ignore:
Timestamp:
05/03/06 17:31:08 (3 years ago)
Author:
dkirov
Message:

always del active connection

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/common/proxy65_manager.py

    r6021 r6273  
    132132                except ValueError: 
    133133                        pass 
    134                 if self.state != S_FINISHED and connection == \ 
    135                                                                 self.active_connection: 
     134                if connection == self.active_connection: 
    136135                        self.active_connection = None 
    137                         self.state = S_INITIAL 
    138                         self.try_next_connection() 
     136                        if self.state != S_FINISHED: 
     137                                self.state = S_INITIAL 
     138                                self.try_next_connection() 
    139139         
    140140        def try_next_connection(self):