summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbderrahim Kitouni <a.kitouni@gmail.com>2020-03-30 09:31:55 +0000
committerAbderrahim Kitouni <a.kitouni@gmail.com>2020-03-30 09:31:55 +0000
commitceb38d1eadf724b980c9e523c57b44ff8ea6a320 (patch)
tree299be0288183f1dc09fdb0c82cc9ad862d54803d
parent0b11fcbf3026aaef36a5d1241064e8bb545e0ab3 (diff)
parentd8749776b3219cdc0a653da65ac87a5425fad35a (diff)
downloadbuildstream-ceb38d1eadf724b980c9e523c57b44ff8ea6a320.tar.gz
Merge branch 'abderrahim/fuse3' into 'master'
mount: don't pass nonempty option See merge request BuildStream/buildstream!1834
-rw-r--r--src/buildstream/_fuse/mount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_fuse/mount.py b/src/buildstream/_fuse/mount.py
index 92ca63179..8cd968f0d 100644
--- a/src/buildstream/_fuse/mount.py
+++ b/src/buildstream/_fuse/mount.py
@@ -205,7 +205,7 @@ class Mount():
# will handle SIGTERM and gracefully exit its own little main loop.
#
try:
- FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True, nonempty=True,
+ FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True,
**self._fuse_mount_options)
except RuntimeError as exc:
# FUSE will throw a RuntimeError with the exit code of libfuse as args[0]