Skip to content

Commit 8e83e53

Browse files
author
quarkusbot
committed
Sync web site with Quarkus documentation
1 parent 0a5f66f commit 8e83e53

File tree

6 files changed

+11
-3
lines changed

6 files changed

+11
-3
lines changed

_generated-doc/3.15/config/quarkus-all-config.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17340,6 +17340,8 @@ a| [[quarkus-grpc_quarkus-grpc-server-max-inbound-message-size]] [.property-path
1734017340
--
1734117341
The max inbound message size in bytes.
1734217342

17343+
When using a single server (using `quarkus.grpc.server.use-separate-server=false`), the default value is 256KB. When using a separate server (using `quarkus.grpc.server.use-separate-server=true`), the default value is 4MB.
17344+
1734317345

1734417346
ifdef::add-copy-button-to-env-var[]
1734517347
Environment variable: env_var_with_copy_button:+++QUARKUS_GRPC_SERVER_MAX_INBOUND_MESSAGE_SIZE+++[]

_generated-doc/3.15/config/quarkus-grpc_quarkus.grpc.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1149,6 +1149,8 @@ a| [[quarkus-grpc_quarkus-grpc-server-max-inbound-message-size]] [.property-path
11491149
--
11501150
The max inbound message size in bytes.
11511151

1152+
When using a single server (using `quarkus.grpc.server.use-separate-server=false`), the default value is 256KB. When using a separate server (using `quarkus.grpc.server.use-separate-server=true`), the default value is 4MB.
1153+
11521154

11531155
ifdef::add-copy-button-to-env-var[]
11541156
Environment variable: env_var_with_copy_button:+++QUARKUS_GRPC_SERVER_MAX_INBOUND_MESSAGE_SIZE+++[]

_generated-doc/3.15/config/quarkus-grpc_quarkus.grpc.server.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@ a| [[quarkus-grpc_quarkus-grpc-server_quarkus-grpc-server-max-inbound-message-si
172172
--
173173
The max inbound message size in bytes.
174174

175+
When using a single server (using `quarkus.grpc.server.use-separate-server=false`), the default value is 256KB. When using a separate server (using `quarkus.grpc.server.use-separate-server=true`), the default value is 4MB.
176+
175177

176178
ifdef::add-copy-button-to-env-var[]
177179
Environment variable: env_var_with_copy_button:+++QUARKUS_GRPC_SERVER_MAX_INBOUND_MESSAGE_SIZE+++[]

_versions/3.15/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.15.5
4+
:quarkus-version: 3.15.6
55
:quarkus-platform-groupid: io.quarkus.platform
66
// .
77
:maven-version: 3.9.8

_versions/3.15/guides/databases-dev-services.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,14 @@ Dev Services volumes can be mapped to the filesystem or the classpath:
140140
# Using a filesystem volume:
141141
quarkus.datasource.devservices.volumes."/path/from"=/container/to <1>
142142
# Using a classpath volume:
143-
quarkus.datasource.devservices.volumes."classpath:./file"=/container/to <2>
143+
quarkus.datasource.devservices.volumes."classpath\:./file"=/container/to <2>
144144
----
145145

146146
<1> The file or folder "/path/from" from the local machine will be accessible at "/container/to" in the container.
147147
<2> When using classpath volumes, the location has to start with "classpath:". The file or folder "./file" from the project's classpath will be accessible at "/container/to" in the container.
148148

149+
CAUTION: The colon character `:` needs to be escaped in `.properties` files as `\:`, or it will be interpreted as a key/value separator.
150+
149151
IMPORTANT: when using a classpath volume, the container will only be granted read permission. On the other hand, when using a filesystem volume, the container will be granted read and write permission.
150152

151153
=== Example of mapping volumes to persist the database data

_versions/3.15/guides/vertx-reference.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)