Skip to content

Commit

Permalink
Fix process killing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Oct 30, 2024
1 parent 9233fe4 commit 15e1b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiidalab_qe/app/result/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def update(self):

def kill_process(self):
if process := self._get_process_node():
control.kill_processes(process)
control.kill_processes([process])

def clean_remote_data(self):
if self.process_node is None:
Expand Down

0 comments on commit 15e1b6e

Please sign in to comment.