diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-03-02 20:59:39 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-03-02 20:59:39 -0800 |
| commit | e982b06bcdbb1d5f5433d4befd1b457e0bc23562 (patch) | |
| tree | 8245b1f15473db2be4ce8d24d568ed85fc25b015 /weed/command/mount_std.go | |
| parent | bcf32591b7971e912b8ea1814c0f63f95f9b352d (diff) | |
| download | seaweedfs-e982b06bcdbb1d5f5433d4befd1b457e0bc23562.tar.xz seaweedfs-e982b06bcdbb1d5f5433d4befd1b457e0bc23562.zip | |
support IPv6
Diffstat (limited to 'weed/command/mount_std.go')
| -rw-r--r-- | weed/command/mount_std.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go index a6d562d40..6eb836311 100644 --- a/weed/command/mount_std.go +++ b/weed/command/mount_std.go @@ -53,7 +53,7 @@ func RunMount(option *MountOptions, umask os.FileMode) bool { filer := *option.filer // parse filer grpc address - filerGrpcAddress, err := pb.ParseFilerGrpcAddress(filer) + filerGrpcAddress, err := pb.ParseServerToGrpcAddress(filer) if err != nil { glog.V(0).Infof("ParseFilerGrpcAddress: %v", err) return true |
