Browse Source

go fmt

pull/753/head
Chris Lu 6 years ago
parent
commit
91ac2e0dd9
  1. 2
      weed/operation/chunked_file.go
  2. 7
      weed/operation/delete_content.go
  3. 4
      weed/operation/grpc_client.go
  4. 4
      weed/operation/lookup.go
  5. 2
      weed/server/common.go
  6. 3
      weed/server/master_grpc_server_lookup.go
  7. 1
      weed/wdclient/vid_map.go

2
weed/operation/chunked_file.go

@ -10,8 +10,8 @@ import (
"sync"
"github.com/chrislusf/seaweedfs/weed/util"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util"
)
var (

7
weed/operation/delete_content.go

@ -1,15 +1,14 @@
package operation
import (
"context"
"errors"
"fmt"
"net/http"
"strings"
"sync"
"net/http"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"context"
"fmt"
)
type DeleteResult struct {

4
weed/operation/grpc_client.go

@ -2,12 +2,12 @@ package operation
import (
"fmt"
"strings"
"strconv"
"strings"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"github.com/chrislusf/seaweedfs/weed/util"
)

4
weed/operation/lookup.go

@ -1,6 +1,7 @@
package operation
import (
"context"
"encoding/json"
"errors"
"fmt"
@ -9,9 +10,8 @@ import (
"strings"
"time"
"github.com/chrislusf/seaweedfs/weed/util"
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"context"
"github.com/chrislusf/seaweedfs/weed/util"
)
type Location struct {

2
weed/server/common.go

@ -19,8 +19,8 @@ import (
"github.com/chrislusf/seaweedfs/weed/util"
_ "github.com/chrislusf/seaweedfs/weed/statik"
statik "github.com/rakyll/statik/fs"
"github.com/gorilla/mux"
statik "github.com/rakyll/statik/fs"
)
var serverStats *stats.ServerStats

3
weed/server/master_grpc_server_lookup.go

@ -1,8 +1,9 @@
package weed_server
import (
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"context"
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
)
func (ms *MasterServer) LookupVolume(ctx context.Context, req *master_pb.LookupVolumeRequest) (*master_pb.LookupVolumeResponse, error) {

1
weed/wdclient/vid_map.go

@ -66,7 +66,6 @@ func (vc *vidMap) LookupVolumeServer(fileId string) (volumeServer string, err er
return serverUrl, nil
}
func (vc *vidMap) GetLocations(vid uint32) (locations []Location) {
vc.RLock()
defer vc.RUnlock()

Loading…
Cancel
Save