This commit is contained in:
Chris Lu 2018-07-07 02:03:25 -07:00
parent 5bfb72d058
commit 2ad45ca04f
2 changed files with 2 additions and 5 deletions

View file

@ -87,7 +87,7 @@ func (fo *FilerOptions) start() {
masters := *f.masters
fs, nfs_err := weed_server.NewFilerServer(defaultMux, publicVolumeMux,
*fo.ip, *fo.port, strings.Split(masters, ","), *fo.collection,
strings.Split(masters, ","), *fo.collection,
*fo.defaultReplicaPlacement, *fo.redirectOnRead, *fo.disableDirListing,
*fo.maxMB,
*fo.secretKey,

View file

@ -2,7 +2,6 @@ package weed_server
import (
"net/http"
"strconv"
"github.com/chrislusf/seaweedfs/weed/filer2"
_ "github.com/chrislusf/seaweedfs/weed/filer2/cassandra"
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb"
@ -15,7 +14,6 @@ import (
)
type FilerServer struct {
port string
masters []string
collection string
defaultReplication string
@ -26,7 +24,7 @@ type FilerServer struct {
maxMB int
}
func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, ip string, port int, masters []string, collection string,
func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, masters []string, collection string,
replication string, redirectOnRead bool, disableDirListing bool,
maxMB int,
secret string,
@ -38,7 +36,6 @@ func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, ip string, port int,
redirectOnRead: redirectOnRead,
disableDirListing: disableDirListing,
maxMB: maxMB,
port: ip + ":" + strconv.Itoa(port),
}
if len(masters) == 0 {