Browse Source

Fix compilation error

pull/96/head
chrislusf 10 years ago
parent
commit
e282a9b06a
  1. 2
      go/weed/volume.go

2
go/weed/volume.go

@ -99,7 +99,7 @@ func runVolume(cmd *Command, args []string) bool {
*v.ip = "127.0.0.1"
}
if *v.publicUrl == "" {
*v.publicUrl = *v.ip + ":" + *v.port
*v.publicUrl = *v.ip + ":" + strconv.Itoa(*v.port)
}
if *v.adminPort == 0 {

Loading…
Cancel
Save