Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
Fix not kill graphd1 (#1193)
Browse files Browse the repository at this point in the history
Co-authored-by: Yee <2520865+yixinglu@users.noreply.github.com>
  • Loading branch information
laura-ding and yixinglu committed Jul 1, 2021
1 parent 764bcca commit bdb0683
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/common/nebula_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ def _collect_pids(self):
for pf in glob.glob(self.work_dir + '/pids/*.pid'):
with open(pf) as f:
self.pids[f.name] = int(f.readline())
for pf in glob.glob(self.work_dir + '/pids1/*.pid'):
with open(pf) as f:
self.pids[f.name] = int(f.readline())

def stop(self):
print("try to stop nebula services...")
Expand Down

0 comments on commit bdb0683

Please sign in to comment.