We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
python_crun
Checked python versions -- 3.9.5, 3.8.6, 3.6.8. Steps to reproduce:
git clone https://github.com/containers/crun cd crun python3 -m venv --copies --without-pip venv ./autogen.sh ./configure --prefix=$(readlink -f venv) --enable-shared --with-python-bindings make install cat <<EOF > test.py import os print(f"First, {os.getpid() = }") import python_crun print(f"Second, {os.getpid() = }") EOF venv/bin/python test.py
Expected output:
First, os.getpid() = 324613 Second, os.getpid() = 324613
Actual output:
First, os.getpid() = 324613 First, os.getpid() = 324613 Second, os.getpid() = 324613
The text was updated successfully, but these errors were encountered:
It is a side effect of https://github.com/containers/crun/blob/main/src/libcrun/linux.c#L3881-L3891
It is required to avoid attacks like https://nvd.nist.gov/vuln/detail/CVE-2019-5736
Sorry, something went wrong.
So, not a bug, understood. If I run into problems with this I will open a new issue, thanks.
No branches or pull requests
Checked python versions -- 3.9.5, 3.8.6, 3.6.8.
Steps to reproduce:
Expected output:
Actual output:
The text was updated successfully, but these errors were encountered: