Commit c9f0d64a authored by sevenuz's avatar sevenuz Committed by Julius Athenstaedt
Browse files

fix fuse fixture for CI?

parent 25271107
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -121,7 +121,6 @@ target_link_libraries(fuse_client
    PRIVATE gkfs_common metadata distributor env_util arithmetic path_util rpc_utils
    ${FUSE3_LIBRARIES}
    gkfs_user_lib
    gkfs_libc_intercept
    )

target_include_directories(fuse_client
+5 −1
Original line number Diff line number Diff line
@@ -1683,11 +1683,15 @@ class FuseClient:
    def shutdown(self):
        try:
            self._proc.terminate()
            time.sleep(1) # give fuse time to unmount
            err = self._proc.wait()
        except ProcessLookupError:
            print("Fuse client already gone at shutdown")
            pass
        except sh.SignalException_SIGTERM:
            pass
        except Exception:
            raise
            pass


    @property