Skip to content

Commit

Permalink
feat: fix Handler receiver on cloudevents http server
Browse files Browse the repository at this point in the history
Signed-off-by: Zufar Dhiyaullhaq <[email protected]>
  • Loading branch information
zufardhiyaulhaq committed Sep 28, 2024
1 parent 5c15d24 commit a4ed4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/receiver/http/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func (s UpgradeHTTP) Start() error {
}

handler := NewUpgradeHandler(s.UpgradeImplementation)
err = cloudEventClient.StartReceiver(ctx, handler)
err = cloudEventClient.StartReceiver(ctx, handler.Handle)
if err != nil {
return err
}
Expand Down

0 comments on commit a4ed4f5

Please sign in to comment.