Skip to content
Snippets Groups Projects
Commit 12e13f16 authored by Auke Klazema's avatar Auke Klazema
Browse files

Task #11443: Fixed the bash command to get correct sasid in observationControl command

parent 3ac41f2e
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ class ObservationControlHandler(MessageHandlerInterface): ...@@ -67,7 +67,7 @@ class ObservationControlHandler(MessageHandlerInterface):
pids = pid_line.split(' ') pids = pid_line.split(' ')
for pid in pids: for pid in pids:
pid_sas_id = run("ps -p %s --no-heading -o command | awk -F[{}] '{ print $2; }'" % pid) pid_sas_id = run("ps -p %s --no-heading -o command | awk -F[{}] '{ printf $2; }'" % pid)
if pid_sas_id == sas_id: if pid_sas_id == sas_id:
logger.info("Killing ObservationControl with PID: %s for SAS ID: %s", pid, sas_id) logger.info("Killing ObservationControl with PID: %s for SAS ID: %s", pid, sas_id)
run('kill -SIGINT %s' % pid) run('kill -SIGINT %s' % pid)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment