Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zombie processes #231

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions nb_conda_kernels/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import sys
import time
import glob
import psutil

import os
from os.path import join, split, dirname, basename, abspath
Expand Down Expand Up @@ -138,6 +139,8 @@ def _conda_info(self):
self._conda_info_cache = conda_info
self._conda_info_cache_expiry = time.time() + CACHE_TIMEOUT

self.wait_for_child_processes_cleanup()

return self._conda_info_cache

def _all_envs(self):
Expand Down Expand Up @@ -390,3 +393,11 @@ def remove_kernel_spec(self, name):
else:
shutil.rmtree(spec_dir)
return spec_dir

def wait_for_child_processes_cleanup(self):
p = psutil.Process()
for c in p.children():
try:
c.wait(timeout=0)
except psutil.TimeoutExpired:
pass
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ jupyter_client
r-irkernel
requests
flake8
psutil
pytest
pytest-cov
mock
2 changes: 1 addition & 1 deletion testbed/testenv1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ dependencies:
- backports.functools_lru_cache
- r-irkernel
- conda-forge::ipykernel
- python=2
- python=3
1 change: 0 additions & 1 deletion tests/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

from nb_conda_kernels.discovery import CondaKernelProvider
from nb_conda_kernels.manager import RUNNER_COMMAND
from jupyter_client.blocking.client import Empty

START_TIMEOUT = 10
CMD_TIMEOUT = 3
Expand Down
Loading