forked from TrueCloudLab/frostfs-s3-gw
Fixes for new NeoFS layer client
Signed-off-by: Evgeniy Kulikov <kim@nspcc.ru>
This commit is contained in:
parent
8101161e51
commit
f7dc2095b1
1 changed files with 9 additions and 8 deletions
|
@ -2,6 +2,7 @@ package main
|
|||
|
||||
import (
|
||||
"context"
|
||||
"crypto/ecdsa"
|
||||
"net"
|
||||
"net/http"
|
||||
"time"
|
||||
|
@ -14,9 +15,6 @@ import (
|
|||
"github.com/spf13/viper"
|
||||
"go.uber.org/zap"
|
||||
"google.golang.org/grpc/keepalive"
|
||||
|
||||
// should be removed in future
|
||||
"github.com/minio/minio/legacy"
|
||||
)
|
||||
|
||||
type (
|
||||
|
@ -26,7 +24,7 @@ type (
|
|||
log *zap.Logger
|
||||
cfg *viper.Viper
|
||||
tls *tlsConfig
|
||||
obj legacy.ObjectLayer
|
||||
obj layer.Client
|
||||
api api.Handler
|
||||
|
||||
conTimeout time.Duration
|
||||
|
@ -52,7 +50,8 @@ func newApp(l *zap.Logger, v *viper.Viper) *App {
|
|||
cli pool.Pool
|
||||
tls *tlsConfig
|
||||
caller api.Handler
|
||||
obj legacy.ObjectLayer
|
||||
obj layer.Client
|
||||
key *ecdsa.PrivateKey
|
||||
reBalance = defaultRebalanceTimer
|
||||
conTimeout = defaultConnectTimeout
|
||||
reqTimeout = defaultRequestTimeout
|
||||
|
@ -66,6 +65,8 @@ func newApp(l *zap.Logger, v *viper.Viper) *App {
|
|||
l.Fatal("failed to initialize auth center", zap.Error(err))
|
||||
}
|
||||
|
||||
key = center.GetNeoFSPrivateKey()
|
||||
|
||||
if v.IsSet(cfgTLSKeyFile) && v.IsSet(cfgTLSCertFile) {
|
||||
tls = &tlsConfig{
|
||||
KeyFile: v.GetString(cfgTLSKeyFile),
|
||||
|
@ -97,7 +98,7 @@ func newApp(l *zap.Logger, v *viper.Viper) *App {
|
|||
Peers: fetchPeers(l, v),
|
||||
|
||||
Logger: l,
|
||||
PrivateKey: center.GetNeoFSPrivateKey(),
|
||||
PrivateKey: key,
|
||||
|
||||
GRPCLogger: gRPCLogger(l),
|
||||
GRPCVerbose: v.GetBool(cfgGRPCVerbose),
|
||||
|
@ -125,7 +126,7 @@ func newApp(l *zap.Logger, v *viper.Viper) *App {
|
|||
}
|
||||
}
|
||||
|
||||
if obj, err = layer.NewLayer(l, cli, center); err != nil {
|
||||
if obj, err = layer.NewLayer(l, cli, key); err != nil {
|
||||
l.Fatal("could not prepare ObjectLayer", zap.Error(err))
|
||||
}
|
||||
|
||||
|
@ -136,7 +137,7 @@ func newApp(l *zap.Logger, v *viper.Viper) *App {
|
|||
apiParams := handler.Params{
|
||||
Log: l,
|
||||
Cli: cli,
|
||||
Key: center.GetNeoFSPrivateKey(),
|
||||
Key: key,
|
||||
}
|
||||
|
||||
if caller, err = handler.New(ctx, apiParams); err != nil {
|
||||
|
|
Loading…
Reference in a new issue