Solved typo issues

This commit is contained in:
jai.s 2020-10-09 14:36:38 +05:30
parent f2e816d660
commit 25ec3dbe75
No known key found for this signature in database
GPG Key ID: 360CFA25EFC67D12

View File

@ -65,14 +65,16 @@ class TestProcessProto(unittest.TestCase):
print('55555555555555555') print('55555555555555555')
except: except:
pass pass
# import traceback
# traceback.print_stack()
logger.error('_stop_process') logger.error('_stop_process')
logger.error('this condition are getting killed are not') logger.error('this condition are getting killed are not')
logger.error('__stop__process') logger.error('__stop__process')
except psutil.TimeoutExpired: except psutil.TimeoutExpired:
logger.error('#####_stop_process method condition--##') logger.error('#####_stop_process method condition--##')
logger.error('self.process -{}'.format(self.process)) try:
logger.error('cls.process PID -{}'.format(cls.process.pid))
except:
logger.error('cls.process -{}'.format(cls.process))
logger.error('#####_stop_process method condition--##') logger.error('#####_stop_process method condition--##')
return False return False
return True return True