switch it back to chris's repo

This commit is contained in:
Brian McQueen 2014-12-14 00:35:26 -08:00
parent 57ec736941
commit d56c748fa8
69 changed files with 140 additions and 140 deletions

View file

@ -5,7 +5,7 @@ import (
"errors"
"fmt"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/util"
"net/url"
)

View file

@ -10,7 +10,7 @@ import (
"strings"
"sync"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/util"
)
var writeLock sync.Mutex //serialize changes to dir.log

View file

@ -6,7 +6,7 @@ import (
"path/filepath"
"strings"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/operation"
)
type FilerEmbedded struct {

View file

@ -3,7 +3,7 @@ package filer
import (
"bytes"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/util"
)

View file

@ -6,8 +6,8 @@ import (
"net/url"
"strconv"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
)
type AssignResult struct {

View file

@ -7,7 +7,7 @@ import (
"strings"
"sync"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/util"
)
type DeleteResult struct {

View file

@ -3,8 +3,8 @@ package operation
import (
"encoding/json"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
)
type ClusterStatusResult struct {

View file

@ -9,7 +9,7 @@ import (
"strings"
"time"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/util"
)
type Location struct {

View file

@ -9,7 +9,7 @@ import (
"strconv"
"strings"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
type FilePart struct {

View file

@ -14,7 +14,7 @@ import (
"path/filepath"
"strings"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
type UploadResult struct {

View file

@ -7,7 +7,7 @@ import (
"os"
"path/filepath"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/util"
"github.com/tgulacsi/go-cdb"
)

View file

@ -6,7 +6,7 @@ import (
"runtime"
"testing"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
var testIndexFilename string = "../../test/sample.idx"

View file

@ -5,8 +5,8 @@ import (
"os"
"testing"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
)
func TestMemoryUsage(t *testing.T) {

View file

@ -7,7 +7,7 @@ import (
"io/ioutil"
"strings"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
/*

View file

@ -4,7 +4,7 @@ import (
"fmt"
"hash/crc32"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/util"
)
var table = crc32.MakeTable(crc32.Castagnoli)

View file

@ -5,8 +5,8 @@ import (
"errors"
"strings"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
)
type FileId struct {

View file

@ -11,9 +11,9 @@ import (
"strings"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/images"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/images"
"github.com/chrislusf/weed-fs/go/util"
)
const (

View file

@ -5,8 +5,8 @@ import (
"io"
"os"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
)
type NeedleMapper interface {

View file

@ -6,8 +6,8 @@ import (
"io"
"os"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
)
const (

View file

@ -10,9 +10,9 @@ import (
"strings"
proto "code.google.com/p/goprotobuf/proto"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/util"
)
const (

View file

@ -4,7 +4,7 @@ import (
"fmt"
"strconv"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
func (s *Store) CheckCompactVolume(volumeIdString string, garbageThresholdString string) (error, bool) {

View file

@ -10,7 +10,7 @@ import (
"sync"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
type Volume struct {

View file

@ -1,7 +1,7 @@
package storage
import (
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/operation"
)
type VolumeInfo struct {

View file

@ -4,7 +4,7 @@ import (
"fmt"
"os"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
const (

View file

@ -5,7 +5,7 @@ import (
"os"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
func (v *Volume) garbageLevel() float64 {

View file

@ -6,7 +6,7 @@ import (
"log"
"os"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/storage"
)
var (

View file

@ -5,8 +5,8 @@ import (
"errors"
"net/url"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/util"
)
type AllocateVolumeResult struct {

View file

@ -1,8 +1,8 @@
package topology
import (
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/goraft/raft"
)

View file

@ -1,8 +1,8 @@
package topology
import (
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/util"
)
type Collection struct {

View file

@ -3,8 +3,8 @@ package topology
import (
"strconv"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
type DataNode struct {

View file

@ -5,8 +5,8 @@ import (
"math/rand"
"strings"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
type NodeId string

View file

@ -5,10 +5,10 @@ import (
"net/http"
"strconv"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/util"
)
func ReplicatedWrite(masterNode string, s *storage.Store, volumeId storage.VolumeId, needle *storage.Needle, r *http.Request) (size uint32, errorStatus string) {

View file

@ -5,11 +5,11 @@ import (
"io/ioutil"
"math/rand"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/sequence"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/sequence"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/util"
"github.com/goraft/raft"
)

View file

@ -4,8 +4,8 @@ import (
"math/rand"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
func (t *Topology) StartRefreshWritableVolumes(garbageThreshold string) {

View file

@ -6,9 +6,9 @@ import (
"net/url"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/util"
)
func batchVacuumVolumeCheck(vl *VolumeLayout, vid storage.VolumeId, locationlist *VolumeLocationList, garbageThreshold string) bool {

View file

@ -5,8 +5,8 @@ import (
"math/rand"
"sync"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
/*

View file

@ -5,8 +5,8 @@ import (
"fmt"
"testing"
"github.com/mcqueenorama/weed-fs/go/sequence"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/sequence"
"github.com/chrislusf/weed-fs/go/storage"
)
var topologyLayout = `

View file

@ -5,8 +5,8 @@ import (
"math/rand"
"sync"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
// mapping from volume to its locations, inverted from server to volume

View file

@ -13,7 +13,7 @@ import (
"encoding/json"
"os"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
type Config struct {

View file

@ -5,7 +5,7 @@ import (
"errors"
"os"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
func TestFolderWritable(folder string) (err error) {

View file

@ -4,7 +4,7 @@ import (
"net"
"time"
"github.com/mcqueenorama/weed-fs/go/stats"
"github.com/chrislusf/weed-fs/go/stats"
)
// Listener wraps a net.Listener, and gives a place to store the timeout

View file

@ -14,9 +14,9 @@ import (
"sync"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/util"
)
type BenchmarkOptions struct {

View file

@ -1,8 +1,8 @@
package main
import (
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
func init() {

View file

@ -8,8 +8,8 @@ import (
"path"
"strings"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/util"
)
var (

View file

@ -11,8 +11,8 @@ import (
"text/template"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
func init() {

View file

@ -6,9 +6,9 @@ import (
"strconv"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/mcqueenorama/weed-fs/go/weed/weed_server"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/weed/weed_server"
)
var (

View file

@ -5,8 +5,8 @@ import (
"path"
"strconv"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
func init() {

View file

@ -8,9 +8,9 @@ import (
"strings"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/mcqueenorama/weed-fs/go/weed/weed_server"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/weed/weed_server"
"github.com/gorilla/mux"
)

View file

@ -9,10 +9,10 @@ import (
"bazil.org/fuse"
"bazil.org/fuse/fs"
"github.com/mcqueenorama/weed-fs/go/filer"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/filer"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/util"
)
func runMount(cmd *Command, args []string) bool {

View file

@ -10,9 +10,9 @@ import (
"sync"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/mcqueenorama/weed-fs/go/weed/weed_server"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/weed/weed_server"
"github.com/gorilla/mux"
)

View file

@ -5,7 +5,7 @@ import (
"fmt"
"os"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
func init() {

View file

@ -6,7 +6,7 @@ import (
"os"
"path/filepath"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/operation"
)
var (

View file

@ -4,7 +4,7 @@ import (
"fmt"
"runtime"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/util"
)
var cmdVersion = &Command{

View file

@ -8,9 +8,9 @@ import (
"strings"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/mcqueenorama/weed-fs/go/weed/weed_server"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/weed/weed_server"
)
func init() {

View file

@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
func TestXYZ(t *testing.T) {

View file

@ -13,7 +13,7 @@ import (
"unicode"
"unicode/utf8"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
var IsDebug *bool

View file

@ -10,11 +10,11 @@ import (
"strconv"
"strings"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/stats"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/stats"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/util"
)
var serverStats *stats.ServerStats

View file

@ -4,8 +4,8 @@ import (
"net/http"
"strconv"
"github.com/mcqueenorama/weed-fs/go/filer"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/filer"
"github.com/chrislusf/weed-fs/go/glog"
)
type FilerServer struct {

View file

@ -11,9 +11,9 @@ import (
"strconv"
"strings"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/util"
"github.com/syndtr/goleveldb/leveldb"
)

View file

@ -3,7 +3,7 @@ package weed_server
import (
"net/http"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
/*

View file

@ -6,10 +6,10 @@ import (
"net/url"
"sync"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/sequence"
"github.com/mcqueenorama/weed-fs/go/topology"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/sequence"
"github.com/chrislusf/weed-fs/go/topology"
"github.com/chrislusf/weed-fs/go/util"
"github.com/goraft/raft"
"github.com/gorilla/mux"
)

View file

@ -5,9 +5,9 @@ import (
"strconv"
"strings"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/stats"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/stats"
"github.com/chrislusf/weed-fs/go/storage"
)
func (ms *MasterServer) lookupVolumeId(vids []string, collection string) (volumeLocations map[string]operation.LookupResult) {

View file

@ -9,11 +9,11 @@ import (
"strings"
proto "code.google.com/p/goprotobuf/proto"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/topology"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/topology"
"github.com/chrislusf/weed-fs/go/util"
)
func (ms *MasterServer) collectionDeleteHandler(w http.ResponseWriter, r *http.Request) {

View file

@ -14,8 +14,8 @@ import (
"strings"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/topology"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/topology"
"github.com/goraft/raft"
"github.com/gorilla/mux"
)

View file

@ -6,8 +6,8 @@ import (
"net/http"
"strings"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/goraft/raft"
)

View file

@ -6,8 +6,8 @@ import (
"strconv"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/storage"
)
type VolumeServer struct {

View file

@ -9,12 +9,12 @@ import (
"strings"
"time"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/images"
"github.com/mcqueenorama/weed-fs/go/operation"
"github.com/mcqueenorama/weed-fs/go/stats"
"github.com/mcqueenorama/weed-fs/go/storage"
"github.com/mcqueenorama/weed-fs/go/topology"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/images"
"github.com/chrislusf/weed-fs/go/operation"
"github.com/chrislusf/weed-fs/go/stats"
"github.com/chrislusf/weed-fs/go/storage"
"github.com/chrislusf/weed-fs/go/topology"
)
var fileNameEscaper = strings.NewReplacer("\\", "\\\\", "\"", "\\\"")

View file

@ -4,9 +4,9 @@ import (
"net/http"
"path/filepath"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/mcqueenorama/weed-fs/go/stats"
"github.com/mcqueenorama/weed-fs/go/util"
"github.com/chrislusf/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/stats"
"github.com/chrislusf/weed-fs/go/util"
)
func (vs *VolumeServer) statusHandler(w http.ResponseWriter, r *http.Request) {

View file

@ -3,7 +3,7 @@ package weed_server
import (
"net/http"
"github.com/mcqueenorama/weed-fs/go/glog"
"github.com/chrislusf/weed-fs/go/glog"
)
func (vs *VolumeServer) vacuumVolumeCheckHandler(w http.ResponseWriter, r *http.Request) {