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
Here's an error string from my logs: Error while receiving a message: *Error{Condition: amqp:internal-error, Description: Connection forced: ... (Shortened output)
After a bit more digging, this in the error returned: https://github.com/Azure/go-amqp/blob/v0.17.0/errors.go#L14
It might be a buggy AMQP1 impl from Rabbit's plugin perspective, but IMO InternalErr from AMQP client shouldn't continue processing :)
Currently there's no way to prevent infinite loop here:
sdk-go/v2/client/client.go
Line 255 in 04ed212
In my case if my connection to AMQP broker dies the
continue
statement a line below the mentioned above just spins the loop indefinitely.(My broker is RabbitMQ + AMQP 1.0 plugin)
The text was updated successfully, but these errors were encountered: