d49bd4b94a
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
33 lines
768 B
Go
33 lines
768 B
Go
package reputation
|
|
|
|
import (
|
|
"encoding/hex"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
reputationEvent "github.com/nspcc-dev/neofs-node/pkg/morph/event/reputation"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func (rp *Processor) handlePutReputation(ev event.Event) {
|
|
put := ev.(reputationEvent.Put)
|
|
peerID := put.PeerID()
|
|
|
|
rp.log.Info("notification",
|
|
zap.String("type", "reputation put"),
|
|
zap.String("peer_id", hex.EncodeToString(peerID.ToV2().GetPublicKey())))
|
|
|
|
// send event to the worker pool
|
|
|
|
err := rp.pool.Submit(func() {
|
|
rp.processPut(
|
|
put.Epoch(),
|
|
peerID,
|
|
put.Value(),
|
|
)
|
|
})
|
|
if err != nil {
|
|
// there system can be moved into controlled degradation stage
|
|
rp.log.Warn("reputation worker pool drained",
|
|
zap.Int("capacity", rp.pool.Cap()))
|
|
}
|
|
}
|