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

Fix make down without stopping another graphd #1193

Merged
merged 3 commits into from
Jul 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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