From 842fb9248cd23653048748e95668533af9921b5e Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Tue, 12 Jan 2021 16:26:39 +0300 Subject: [PATCH] [#304] cmd/neofs-node: Tidy default configuration and log output Signed-off-by: Alex Vanin --- cmd/neofs-node/config.go | 9 ++++++--- pkg/morph/event/listener.go | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/cmd/neofs-node/config.go b/cmd/neofs-node/config.go index 2ebfbc943..80947eb46 100644 --- a/cmd/neofs-node/config.go +++ b/cmd/neofs-node/config.go @@ -361,15 +361,16 @@ func initViper(path string) *viper.Viper { } func defaultConfiguration(v *viper.Viper) { - // fixme: all hardcoded private keys must be removed - v.SetDefault(cfgNodeKey, "Kwk6k2eC3L3QuPvD8aiaNyoSXgQ2YL1bwS5CP1oKoA9waeAze97s") - v.SetDefault(cfgBootstrapAddress, "") // address to bootstrap with + v.SetDefault(cfgNodeKey, "") // node key + v.SetDefault(cfgBootstrapAddress, "") // announced address of the node v.SetDefault(cfgMorphRPCAddress, []string{}) v.SetDefault(cfgMorphNotifyRPCAddress, []string{}) v.SetDefault(cfgMorphNotifyDialTimeout, 5*time.Second) + v.SetDefault(cfgListenAddress, "127.0.0.1:50501") // listen address v.SetDefault(cfgMaxMsgSize, 4<<20) // transport msg limit 4 MiB + v.SetDefault(cfgReflectService, false) v.SetDefault(cfgAccountingContract, "1aeefe1d0dfade49740fff779c02cd4a0538ffb1") v.SetDefault(cfgAccountingFee, "1") @@ -397,8 +398,10 @@ func defaultConfiguration(v *viper.Viper) { v.SetDefault(cfgPolicerWorkScope, 100) v.SetDefault(cfgPolicerExpRate, 10) // in % v.SetDefault(cfgPolicerHeadTimeout, 5*time.Second) + v.SetDefault(cfgPolicerDialTimeout, 5*time.Second) v.SetDefault(cfgReplicatorPutTimeout, 5*time.Second) + v.SetDefault(cfgReplicatorDialTimeout, 5*time.Second) v.SetDefault(cfgReBootstrapEnabled, false) // in epochs v.SetDefault(cfgReBootstrapInterval, 2) // in epochs diff --git a/pkg/morph/event/listener.go b/pkg/morph/event/listener.go index 3355307ef..74ebb15d7 100644 --- a/pkg/morph/event/listener.go +++ b/pkg/morph/event/listener.go @@ -205,7 +205,7 @@ func (s listener) parseAndHandle(notifyEvent *state.NotificationEvent) { s.mtx.RUnlock() if !ok { - log.Warn("event parser not set") + log.Debug("event parser not set") return }