You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reproduce the bug by access files in following sequence
#!/bin/bash# Result is as expected.
ls /tmp/reproduce/fuse-layers/merged/site-packages > /dev/null
# Result is as expected.
ls /tmp/reproduce/fuse-layers/merged/site-packages/setuptools > /dev/null
# Result is wrong. Beacuse there is whiteout file in `l1/site-package/setuptools/.wh..wh.opq`, so we should only see the file `depends.cpython-38.pyc` from `l1`. But result is `config.cpython-38.pyc depends.cpython-38.pyc` which are from `l0`
ls /tmp/reproduce/fuse-layers/merged/site-packages/setuptools/__pycache__
echo''echo'Result is wrong. Beacuse there is whiteout file in `l1/site-package/setuptools/.wh..wh.opq`, so we should only see the file `depends.cpython-38.pyc` from `l1`. But result is `config.cpython-38.pyc depends.cpython-38.pyc` which are from `l0`'
The text was updated successfully, but these errors were encountered:
Reproduce steps:
The text was updated successfully, but these errors were encountered: