stopped receiver

This commit is contained in:
mazzol_a
2025-05-02 14:17:46 +02:00
parent d368d59ddb
commit cfe9600d49
2 changed files with 12 additions and 13 deletions

View File

@ -23,7 +23,7 @@ def Log(color, message):
def checkIfProcessRunning(processName):
cmd = f"pgrep -f {processName}"
cmd = f"pgrep {processName}"
res = subprocess.getoutput(cmd)
return bool(res.strip())
@ -206,9 +206,9 @@ with open(fname, 'w') as fp:
Log(Fore.BLUE, 'General tests (results: ' + file_results + ')')
try:
startGeneralTests(fp, file_results)
killAllStaleProcesses(fp)
startGeneralTests(fp, file_results)
testError = False
for server in servers:
try: