Skip to content

Commit

Permalink
fix blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Meunier committed Sep 19, 2024
1 parent 9136595 commit b4a083b
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

/**
* Spring Rabbit Observation for listeners.
*
* @author Gary Russell
* @author Vincent Meunier
* @since 3.0
Expand All @@ -34,6 +35,7 @@ public enum RabbitListenerObservation implements ObservationDocumentation {
* Observation for Rabbit listeners.
*/
LISTENER_OBSERVATION {

@Override
public Class<? extends ObservationConvention<? extends Context>> getDefaultConvention() {
return DefaultRabbitListenerObservationConvention.class;
Expand All @@ -60,6 +62,7 @@ public enum ListenerLowCardinalityTags implements KeyName {
* Listener id.
*/
LISTENER_ID {

@Override
public String asString() {
return "spring.rabbit.listener.id";
Expand All @@ -69,9 +72,11 @@ public String asString() {

/**
* The queue the listener is plugged to.
*
* @since 3.2
*/
DESTINATION_NAME {

@Override
public String asString() {
return "messaging.destination.name";
Expand All @@ -81,9 +86,11 @@ public String asString() {

/**
* The delivery tag.
*
* @since 3.2
*/
DELIVERY_TAG {

@Override
public String asString() {
return "messaging.rabbitmq.message.delivery_tag";
Expand Down

0 comments on commit b4a083b

Please sign in to comment.