Dariusz Górecki
Dariusz Górecki
Hey, when I use relative root rewrite in `additional_environment.rb` like `config.action_controller.relative_url_root = '/projects'` The formatting help link is rendered with `/projects/projects/(...)` and click on it produced 404, while regular Redmine...
Everybody knows that pooling for job result sucks :) Currently when my jobs finish work I `publish` a message on `channel` to wake up any subscribers interested in job's result,...
Currently there's no way to prevent infinite loop here: https://github.com/cloudevents/sdk-go/blob/04ed212498e406a218b44a6067400e76281bd169/v2/client/client.go#L255 In my case if my connection to AMQP broker dies the `continue` statement a line below the mentioned above just...
This log line: https://github.com/cloudevents/sdk-go/blob/04ed212498e406a218b44a6067400e76281bd169/v2/client/client.go#L261 In most cases is never logged, the message finisher whose default impl is to return nil error shadows the error returned from even handlers: https://github.com/cloudevents/sdk-go/blob/04ed212498e406a218b44a6067400e76281bd169/v2/client/invoker.go#L59
We're experiencing a panic due to send on a closed channel here: https://github.com/cloudevents/sdk-go/blob/release-v2.15.2/protocol/kafka_sarama/v2/receiver.go#L80 I've traced this to the fact that the `incoming` channel is closed in SDK managed goroutine here:...
When event has data that's a not-nil, zero length slice, JSON marshalling produces malformed JSON. POC, this code fails to unmarshall the event: ```go import ( "log" ce "github.com/cloudevents/sdk-go/v2" )...
According to docs MQTTv3 should be supported, but the Go SDK lacks v3 support. Probably thats's because paho has 2 confusingly named libraries: - `github.com/eclipse/paho.golang` - used currently by the...