Skip to content

Commit

Permalink
Rename the vineyard.sock to vineyard-worker.sock
Browse files Browse the repository at this point in the history
Signed-off-by: Ye Cao <[email protected]>
  • Loading branch information
dashanji committed Apr 10, 2024
1 parent 0489b39 commit 756625e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/vineyard-fluid-fuse/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ while true; do
echo "write vineyard ipc socket and rpc endpoint to vineyard configuration YAML..."
write_yaml_config "$VINEYARD_RPC_ENDPOINT"
echo "check whether vineyard socket symlink is created..."
if [ ! -S $SOCKET_FILE ] && [ -S $MOUNT_DIR/vineyard.sock ]; then
if [ ! -S $SOCKET_FILE ] && [ -S $MOUNT_DIR/vineyard-worker.sock ]; then
echo "create a hard link of vineyard socket..."
ln $MOUNT_DIR/vineyard.sock $SOCKET_FILE
ln $MOUNT_DIR/vineyard-worker.sock $SOCKET_FILE
else
echo "$SOCKET_FILE exists."
fi
Expand Down

0 comments on commit 756625e

Please sign in to comment.