mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-17 04:30:03 +02:00
ship_processor.go: Use publisher instead of redis directly.
This commit is contained in:
parent
eec834a338
commit
d0782c3c7c
1 changed files with 5 additions and 5 deletions
|
|
@ -36,7 +36,7 @@ func encodeMessage(v interface{}) ([]byte, bool) {
|
|||
|
||||
func queueMessage(channel redis.ChannelInterface, payload []byte) bool {
|
||||
key := redisNs.NewKey(channel)
|
||||
err := redis.RegisterPublish(key.String(), payload).Err()
|
||||
err := publisher.Publish(key.String(), payload)
|
||||
if err != nil {
|
||||
log.WithError(err).Errorf("Failed to post to channel '%s'", key)
|
||||
return false
|
||||
|
|
@ -67,9 +67,9 @@ func processBlock(block *ship.GetBlocksResultV0) {
|
|||
|
||||
encodeQueue(redis.HeartbeatChannel, hb)
|
||||
|
||||
_, err := redis.Send()
|
||||
err := publisher.Flush()
|
||||
if err != nil {
|
||||
log.WithError(err).Error("Failed to send redis")
|
||||
log.WithError(err).Error("Failed to send messages")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -120,8 +120,8 @@ func processTraces(traces []*ship.TransactionTraceV0) {
|
|||
}
|
||||
}
|
||||
|
||||
_, err := redis.Send()
|
||||
err := publisher.Flush()
|
||||
if err != nil {
|
||||
log.WithError(err).Error("Failed to send redis")
|
||||
log.WithError(err).Error("Failed to send messages")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue