packagemountmanagerimport("fmt""github.com/seaweedfs/seaweedfs/weed/util")// LocalSocketPath returns the unix socket path used to communicate with the weed mount process.funcLocalSocketPath(volumeIDstring)string{hash:=util.HashToInt32([]byte(volumeID))ifhash<0{hash=-hash}returnfmt.Sprintf("/tmp/seaweedfs-mount-%d.sock",hash)}