summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.van.berkom@gmail.com>2020-04-01 12:55:45 +0000
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2020-04-01 12:55:45 +0000
commit14d644b56c48ed522ad493b4b3f51e86728d9e3e (patch)
treeb3cb68c40876330b89a2436447511ff3abfd1bfc
parent213656a7f22d71699d65fd75e495199791341f03 (diff)
parenta74eb461d23b7348f9ac78211d995eae05a963c1 (diff)
downloadbuildstream-14d644b56c48ed522ad493b4b3f51e86728d9e3e.tar.gz
Merge branch 'abderrahim/fuse3-1' into 'bst-1'
mount: don't pass nonempty option See merge request BuildStream/buildstream!1842
-rw-r--r--buildstream/_fuse/mount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_fuse/mount.py b/buildstream/_fuse/mount.py
index 0ab1ce715..83b3ba953 100644
--- a/buildstream/_fuse/mount.py
+++ b/buildstream/_fuse/mount.py
@@ -184,7 +184,7 @@ class Mount():
# Run fuse in foreground in this child process, internally libfuse
# will handle SIGTERM and gracefully exit it's own little main loop.
#
- FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True, nonempty=True)
+ FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True)
# Explicit 0 exit code, if the operations crashed for some reason, the exit
# code will not be 0, and we want to know about it.