Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
miiu96 committed May 15, 2023
1 parent ae1775f commit fc3828f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/node/config/external.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@
MarshallerType = "json"
# The number of seconds when the client will try again to send the data
RetryDurationInSec = 5
# Signals if in case of data payload processing error, we should send the ack signal or not
# Sets if, in case of data payload processing error, we should block or not the advancement to the next processing event. Set this to true if you wish the node to stop processing blocks if the client/server encounters errors while processing requests.
BlockingAckOnError = false
2 changes: 1 addition & 1 deletion outport/host/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (o *hostDriver) handleAction(args interface{}, topic string) error {

err = o.senderHost.Send(marshalledPayload, topic)
if err != nil {
return fmt.Errorf("%w while sendcing data on route for topic %s", err, topic)
return fmt.Errorf("%w while sending data on route for topic %s", err, topic)
}

return nil
Expand Down

0 comments on commit fc3828f

Please sign in to comment.