Skip to content

Commit

Permalink
Fix various infelicities in AMQP/mailer documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Jul 19, 2021
1 parent a1f2f36 commit 2b44805
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/amqp-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Refer to the https://smallrye.io/smallrye-reactive-messaging[SmallRye Reactive M
The AMQP connector allows Quarkus applications to send and receive messages using the AMQP 1.0 protocol.
More details about the protocol can be found in http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-overview-v1.0-os.html[the AMQP 1.0 specification].
It's important to note that AMQP 1.0 and AMQP 0.9.1 (implemented by RabbitMQ) are incompatible.
Check <<using-rabbitmq Using RabbitMQ>> to get more details.
Check <<using-rabbitmq,Using RabbitMQ>> to get more details.

== AMQP connector extension

Expand Down Expand Up @@ -435,7 +435,7 @@ As a consequence, it’s not possible to change the destination dynamically (usi

=== Quarkus specific configuration

include::{generated-dir}/config/quarkus-smallrye-reactive-messaging-amqp.adoc[opts=optional, leveloffset=+1]
include::{generated-dir}/config/quarkus-smallrye-reactivemessaging-amqp.adoc[opts=optional, leveloffset=+1]

=== Incoming channel configuration

Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/amqp.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ Quarkus has built-in capabilities to deal with JSON AMQP messages.

[NOTE]
.@RegisterForReflection
----
====
The `@RegisterForReflection` annotation instructs Quarkus to include the class (including fields and methods) when building the native executable.
This will be useful later when we run the applications as native executables inside containers.
Without, the native compilation would remove the fields and methods during the dead-code elimination phase.
----
====

== Sending quote request

Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/mailer.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ The Quarkus mailer is using SMTP, so make sure you have access to a SMTP server.

In the `src/main/resources/application.properties` file, you need to configure the host, port, username, password as well as the other configuration aspect.
Note that the password can also be configured using system properties and environment variables.
See the xref:configuration-reference[configuration reference guide] for details.
See the xref:configuration-reference.adoc[configuration reference guide] for details.

Here is an example using _sendgrid_:

Expand Down

0 comments on commit 2b44805

Please sign in to comment.