Changeset 175 for trunk/daemon
- Timestamp:
- 07/27/05 14:20:24 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/daemon/togad.py
r170 r175 761 761 xml_thread = threading.Thread( None, self.processXML, 'xml_thread' ) 762 762 xml_thread.start() 763 except threading.error, msg:763 except error, msg: 764 764 debug_msg( 0, 'ERROR: Unable to start xml_thread!: '+str(msg)) 765 765 #return 1 … … 773 773 store_thread = threading.Thread( None, self.storeMetrics, 'store_thread' ) 774 774 store_thread.start() 775 except threading.error, msg:775 except error, msg: 776 776 debug_msg( 0, 'ERROR: Unable to start store_thread!: '+str(msg)) 777 777 #return 1 … … 790 790 store_metric_thread = threading.Thread( None, self.storeThread, 'store_metric_thread' ) 791 791 store_metric_thread.start() 792 except threading.error, msg:792 except error, msg: 793 793 debug_msg( 0, 'ERROR: Unable to start ganglia_store_thread()!: '+str(msg) ) 794 794 return 1 … … 827 827 parsethread = threading.Thread( None, self.parseThread, 'parsethread' ) 828 828 parsethread.start() 829 except threading.error, msg:829 except error, msg: 830 830 debug_msg( 0, 'ERROR: Unable to start ganglia_xml_thread()!: ' + str(msg) ) 831 831 return 1 … … 1353 1353 ganglia_xml_thread.start() 1354 1354 1355 except threading.error, msg:1355 except error, msg: 1356 1356 debug_msg( 0, 'FATAL ERROR: Unable to start main threads!: '+ str(msg) ) 1357 1357 syslog.closelog()
Note: See TracChangeset
for help on using the changeset viewer.