From 49034a26f819249e4ce540fdd8df87d9fd6cda77 Mon Sep 17 00:00:00 2001 From: maobaolong <307499405@qq.com> Date: Mon, 3 Jul 2023 14:19:33 +0800 Subject: [PATCH] Fix to support mount fuse do not report error on macosx --- 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"