You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had searched in the issues and found no similar issues.
Environment
Windows
EventMesh version
master
What happened
Due to Objects.requireNonNull(event.getExtension(Constants.PROTOCOL_VERSION)).toString() this would cause NullPointExceptions for http request.
To solve this problem can be changed to Objects.requireNonNull(event.getSpecVersion()).toString().
How to reproduce
Use HTTP request pub/sub events.
Debug logs
No response
Are you willing to submit PR?
Yes I am willing to submit a PR!
The text was updated successfully, but these errors were encountered:
Search before asking
Environment
Windows
EventMesh version
master
What happened
Due to
Objects.requireNonNull(event.getExtension(Constants.PROTOCOL_VERSION)).toString()
this would cause NullPointExceptions for http request.To solve this problem can be changed to
Objects.requireNonNull(event.getSpecVersion()).toString()
.How to reproduce
Use HTTP request pub/sub events.
Debug logs
No response
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: