From a7ac91f9688c4429fb5c905f06b3cfed39a45edc Mon Sep 17 00:00:00 2001 From: maobaolong <307499405@qq.com> Date: Tue, 18 Jul 2023 02:41:48 +0800 Subject: [PATCH] Fix to support mount fuse do not report error on macosx ### What changes are proposed in this pull request? Fix mount fuse do not report error on macosx pr-link: Alluxio/alluxio#17722 change-id: cid-d528c181cc01abf29e47563c0dcbcbb82a686a61 --- integration/fuse/bin/alluxio-fuse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/fuse/bin/alluxio-fuse b/integration/fuse/bin/alluxio-fuse index 6be7fec13a24..25f9a6469428 100755 --- a/integration/fuse/bin/alluxio-fuse +++ b/integration/fuse/bin/alluxio-fuse @@ -109,7 +109,7 @@ mount_fuse() { else (nohup ${cmd} > ${ALLUXIO_LOGS_DIR}/fuse.out 2>&1) & # sleep: workaround to let the bg java process exit on errors, if any - sleep ${mount_sleep_seconds}s + sleep ${mount_sleep_seconds} if kill -0 $! > /dev/null 2>&1 ; then echo "Successfully mounted Alluxio to ${mount_point}." echo "See ${ALLUXIO_LOGS_DIR}/fuse.log for logging messages"