1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-09 17:44:59 +09:00

More fixes

This commit is contained in:
mcrakhman 2023-06-08 21:54:15 +02:00
parent 248f34eaef
commit b801599b2d
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
6 changed files with 9 additions and 8 deletions

View file

@ -7,6 +7,7 @@ import (
"strings"
"github.com/anyproto/any-sync/app"
//nolint:misspell
"github.com/anyproto/any-sync/commonspace/config"
"github.com/anyproto/any-sync/metric"
"github.com/anyproto/any-sync/net/rpc"

View file

@ -51,7 +51,7 @@ func (s *clientServer) Name() (name string) {
}
func (s *clientServer) Run(ctx context.Context) error {
if err := s.startServer(ctx); err != nil {
if err := s.startServer(); err != nil {
log.InfoCtx(ctx, "failed to start drpc server", zap.Error(err))
} else {
s.serverStarted = true
@ -63,7 +63,7 @@ func (s *clientServer) Port() int {
return s.port
}
func (s *clientServer) startServer(ctx context.Context) (err error) {
func (s *clientServer) startServer() (err error) {
db, err := s.provider.SpaceStorage()
if err != nil {
return
@ -109,6 +109,6 @@ func (s *clientServer) prepareListener(port int) (net.Listener, error) {
return net.Listen("tcp", ":")
}
func (s *clientServer) Close(ctx context.Context) (err error) {
func (s *clientServer) Close(_ context.Context) (err error) {
return nil
}

View file

@ -25,7 +25,7 @@ type clientPeerManager struct {
sync.Mutex
}
func (n *clientPeerManager) Init(a *app.App) (err error) {
func (n *clientPeerManager) Init(_ *app.App) (err error) {
n.responsiblePeerIds = n.peerStore.ResponsibleNodeIds(n.spaceId)
return
}

View file

@ -3,14 +3,12 @@ package space
import (
"context"
"errors"
"storj.io/drpc"
"time"
"github.com/anyproto/any-sync/app"
"github.com/anyproto/any-sync/app/logger"
"github.com/anyproto/any-sync/app/ocache"
"github.com/anyproto/any-sync/commonspace"
"github.com/anyproto/any-sync/net/peerservice"
// nolint: misspell
commonconfig "github.com/anyproto/any-sync/commonspace/config"
"github.com/anyproto/any-sync/commonspace/object/tree/treechangeproto"
@ -20,11 +18,13 @@ import (
"github.com/anyproto/any-sync/commonspace/syncstatus"
"github.com/anyproto/any-sync/coordinator/coordinatorclient"
"github.com/anyproto/any-sync/coordinator/coordinatorproto"
"github.com/anyproto/any-sync/net/peerservice"
"github.com/anyproto/any-sync/net/pool"
"github.com/anyproto/any-sync/net/rpc/server"
"github.com/anyproto/any-sync/net/streampool"
"github.com/gogo/protobuf/proto"
"go.uber.org/zap"
"storj.io/drpc"
"github.com/anyproto/anytype-heart/core/anytype/config"
"github.com/anyproto/anytype-heart/core/wallet"

View file

@ -2,10 +2,10 @@ package space
import (
"errors"
"github.com/anyproto/any-sync/commonspace/objectsync"
"sync/atomic"
"time"
"github.com/anyproto/any-sync/commonspace/objectsync"
"github.com/anyproto/any-sync/commonspace/spacesyncproto"
"github.com/anyproto/any-sync/net/peer"
"golang.org/x/net/context"

View file

@ -13,7 +13,7 @@ func New() syncstatus.StatusServiceProvider {
type statusProvider struct {
}
func (s statusProvider) Init(a *app.App) (err error) {
func (s statusProvider) Init(_ *app.App) (err error) {
return nil
}