This commit is contained in:
Chris Lu 2020-12-13 22:29:52 -08:00
parent c45d6a865b
commit 7c52a35942
2 changed files with 4 additions and 4 deletions

View file

@ -219,8 +219,8 @@ func (v VolumeServerOptions) startVolumeServer(volumeFolders, maxVolumeCounts, v
volumeServer := weed_server.NewVolumeServer(volumeMux, publicVolumeMux,
*v.ip, *v.port, *v.publicUrl,
v.folders, v.folderMaxLimits, v.minFreeSpacePercents,
*v.idxFolder, diskType,
v.folders, v.folderMaxLimits, v.minFreeSpacePercents, diskType,
*v.idxFolder,
volumeNeedleMapKind,
strings.Split(masters, ","), 5, *v.dataCenter, *v.rack,
v.whiteList,

View file

@ -38,8 +38,8 @@ type VolumeServer struct {
func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
port int, publicUrl string,
folders []string, maxCounts []int, minFreeSpacePercents []float32,
idxFolder string, diskType storage.DiskType,
folders []string, maxCounts []int, minFreeSpacePercents []float32, diskType storage.DiskType,
idxFolder string,
needleMapKind storage.NeedleMapType,
masterNodes []string, pulseSeconds int,
dataCenter string, rack string,