Skip to content

Commit e02046f

Browse files
committed
fix: hep marshal
1 parent f30c25b commit e02046f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

publish/publisher.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,10 @@ func (pub *Publisher) Start(pq chan *decoder.Packet) {
7676
if err == nil {
7777
msg.NodePW = config.Cfg.HepNodePW
7878
pkt.Payload, err = msg.Marshal()
79-
if err != nil {
79+
if err == nil {
8080
pub.output(pkt.Payload)
81+
} else {
82+
logp.Warn("Bad HEP marshal: %v", err)
8183
}
8284
} else {
8385
logp.Warn("Bad HEP: %v", err)

0 commit comments

Comments
 (0)