Greg L. Turnquist
Greg L. Turnquist
Observability is currently being adopted to handle metrics and tracing during "active" flows, such as invoking repositories, etc. This is handled by a current suite of Observation handlers and Zipkin-based...
I was confused when I saw `Sender` with methods like `declareQueue()`. I thought that [in AMQP](https://www.rabbitmq.com/tutorials/amqp-concepts.html#amqp-model), queues were components of the `Receiver`, and that senders only talk to exchanges. Seeing...
Reading the samples to grok the API, I found it confusing to see `Sender`-based code smack dab inside the `ReceiveSample`. ## Motivation A clear separation of `Sender` from `Receiver` seems...
To have a little symmetry, can we rename `Delivery` to `InboundMessage`? And then `AcknowledgeableDelivery` could become `AcknowledgeableInboundMessage`. I personally feel this would align better with `OutboundMessage` on the sending side....
When applying `server.servlet.context-path=/ctx`, the links automatically adjust. ``` 2020-04-13 10:43:59.877 INFO 79416 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '/ctx' ``` Testing with...