2020-09-08 09:01:38 +00:00
|
|
|
package neofs
|
|
|
|
|
|
|
|
import (
|
|
|
|
neofsEvent "github.com/nspcc-dev/neofs-node/pkg/morph/event/neofs"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Process config event by setting configuration value from main chain in
|
|
|
|
// side chain.
|
|
|
|
func (np *Processor) processConfig(config *neofsEvent.Config) {
|
2021-03-23 15:20:44 +00:00
|
|
|
if !np.alphabetState.IsAlphabet() {
|
|
|
|
np.log.Info("non alphabet mode, ignore config")
|
2020-09-08 09:01:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-31 11:50:11 +00:00
|
|
|
err := np.netmapClient.SetConfig(config.ID(), config.Key(), config.Value())
|
2020-09-08 09:01:38 +00:00
|
|
|
if err != nil {
|
|
|
|
np.log.Error("can't relay set config event", zap.Error(err))
|
|
|
|
}
|
|
|
|
}
|