David Justice
David Justice
Ouch... I'm sorry to hear that, @vcabbage. You have done a great job with your work on this library. Thank you so much for working on this!! Have you thought...
I can’t find docs regarding x-opt-partition-id and at this point, I’m not sure if that was a meta field that previously existed or if it was a request to the...
I believe if you set `LinkCredit` as show in [this example](https://github.com/vcabbage/amqp/blob/e6aeb3d8e5ac68426935114ac2a430c32391e5a7/example_test.go#L57), it will limit your receiver from receiving more than the number specified in `LinkCredit` before providing a disposition for...
Share some code. Happy to give it a look.
[We](https://github.com/Azure/azure-event-hubs-go) handle this by creating a struct which contains the connection, session and link. Upon an error, we rebuild each entity and attempt to complete the send or receive again....
Yep, I was thinking a non-block method to return error or nil. I think it's a less ambitious way to deal with errors than #109 that would make errors a...
I think I'd do something like the following. That way I can be a bit more selective about what I recover. ```go err = sender.Send(ctx, msg) if err == nil...
Here is the list of behaviors enforced in the service side related to connection management for Azure Service Bus (afaik). - Connection is created, but there are no senders/receivers created...
What @alanconway suggested is eerily similar to what we've implemented in the Azure Service Bus and Event Hubs libraries for message receivers. ```go // ListenerHandle provides the ability to close...
@dumbnose, what do you think about advising folks to use something like https://github.com/jackfrancis/kamino to do the progressive rollout? Agreed about defaulting to no unattended updates. @mboersma and @jackfrancis please give...