We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6fdd7d commit 117eefeCopy full SHA for 117eefe
rxtx.go
@@ -136,8 +136,8 @@ func main() {
136
r.OPTIONS(rxRoute, preflight)
137
138
rxRouteSync := "/rxs/:producer/:key/*label"
139
- r.POST(rxRoute, q.RxRouteHandler)
140
- r.OPTIONS(rxRoute, preflight)
+ r.POST(rxRouteSync, q.RxRouteHandler)
+ r.OPTIONS(rxRouteSync, preflight)
141
142
rxRouteAsync := "/rxa/:producer/:key/*label"
143
r.POST(rxRouteAsync, q.RxRouteHandlerAsync)
0 commit comments