Skip to content

Commit

Permalink
Fixed message ID format
Browse files Browse the repository at this point in the history
  • Loading branch information
vnalawad-tibco committed Dec 23, 2020
1 parent 726a524 commit 3ac935b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulsar/trigger/subscriber/trigger.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func (handler *Handler) consume() {
}

func (handler *Handler) handleMessage(msg pulsar.ConsumerMessage) {
handler.handler.Logger().Debugf("Message received - %s", string(msg.ID().Serialize()))
handler.handler.Logger().Debugf("Message received - %s", msg.ID())
out := &Output{}
if handler.handler.Settings()["format"] != nil &&
handler.handler.Settings()["format"].(string) == "JSON" {
Expand Down

0 comments on commit 3ac935b

Please sign in to comment.