Skip to content

Commit 411ce6b

Browse files
author
quarkusbot
committed
Sync web site with Quarkus documentation
1 parent 168cc2a commit 411ce6b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

_guides/_attributes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Common attributes.
22
// --> No blank lines (it ends the document header)
33
:project-name: Quarkus
4-
:quarkus-version: 3.23.3
4+
:quarkus-version: 3.23.4
55
:quarkus-platform-groupid: io.quarkus.platform
66
// .
77
:maven-version: 3.9.9

_guides/config-mappings.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,7 @@ requires a spy:
537537
[source,java]
538538
----
539539
@ConfigMapping(prefix = "app")
540+
@Unremovable
540541
public interface AppConfig {
541542
@WithDefault("app")
542543
String name();

_guides/vertx-reference.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ The `EventBus` object provides methods to:
704704
[source, java]
705705
----
706706
// Case 1
707-
bus.sendAndForget("greeting", name)
707+
bus.send("greeting", name)
708708
// Case 2
709709
bus.publish("greeting", name)
710710
// Case 3
@@ -730,7 +730,7 @@ Read xref:./virtual-threads.adoc[the virtual thread guide] for more details.
730730

731731
=== Use codecs
732732

733-
The https://vertx.io/docs/vertx-core/java/#event_bus[Vert.x Event Bus] uses https://vertx.io/docs/vertx-core/java/#_message_codecs[codecs] to _serialize_ and _deserialize_ message objects.
733+
The link:++https://vertx.io/docs/vertx-core/java/#event_bus++[Vert.x Event Bus] uses link:++https://vertx.io/docs/vertx-core/java/#_message_codecs++[codecs] to _serialize_ and _deserialize_ message objects.
734734
Quarkus provides a default codec for local delivery.
735735
This codec is automatically used for return types and message body parameters of local consumers, i.e. methods annotated with `@ConsumeEvent` where `ConsumeEvent#local() == true` (which is the default).
736736

0 commit comments

Comments
 (0)