Skip to content

Commit 6f14e5f

Browse files
committed
deploy: c2716a3
1 parent 7eaee7e commit 6f14e5f

File tree

5 files changed

+384
-354
lines changed

5 files changed

+384
-354
lines changed

feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Quarkus</title>
66
<link>https://quarkus.io</link>
77
<description>Quarkus: Supersonic Subatomic Java</description>
8-
<lastBuildDate>Mon, 21 Oct 2024 15:32:27 +0000</lastBuildDate>
8+
<lastBuildDate>Tue, 22 Oct 2024 03:09:01 +0000</lastBuildDate>
99

1010

1111
<item>

version/main/guides/building-native-image.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ <h3 id="multistage-docker"><a class="anchor" href="#multistage-docker"></a>Using
12331233
<div class="content">
12341234
<pre class="highlightjs highlight"><code class="language-dockerfile hljs" data-lang="dockerfile">## Stage 1 : build with maven builder image with native capabilities
12351235
FROM quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-21 AS build
1236-
COPY --chown=quarkus:quarkus mvnw /code/mvnw
1236+
COPY --chown=quarkus:quarkus --chmod=0755 mvnw /code/mvnw
12371237
COPY --chown=quarkus:quarkus .mvn /code/.mvn
12381238
COPY --chown=quarkus:quarkus pom.xml /code/
12391239
USER quarkus

version/main/guides/datasource.html

Lines changed: 2 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -654,35 +654,14 @@ <h4 id="jdbc-datasource"><a class="anchor" href="#jdbc-datasource"></a>JDBC data
654654
<div class="sect4">
655655
<h5 id="other-databases"><a class="anchor" href="#other-databases"></a>Custom databases and drivers</h5>
656656
<div class="paragraph">
657-
<p>If you need to connect to a database for which Quarkus does not provide an extension with the JDBC driver, you can use a custom driver instead.
658-
For example, if you are using the OpenTracing JDBC driver in your project.</p>
657+
<p>If you need to connect to a database for which Quarkus does not provide an extension with the JDBC driver,
658+
you can use a custom driver instead. For example, if you are using the OpenTelemetry JDBC driver in your project.</p>
659659
</div>
660660
<div class="paragraph">
661661
<p>Without an extension, the driver will work correctly in any Quarkus app running in JVM mode.
662662
However, the driver is unlikely to work when compiling your application to a native executable.
663663
If you plan to make a native executable, use the existing JDBC Quarkus extensions, or contribute one for your driver.</p>
664664
</div>
665-
<div class="admonitionblock warning">
666-
<table>
667-
<tr>
668-
<td class="icon">
669-
<i class="fa icon-warning" title="Warning"></i>
670-
</td>
671-
<td class="content">
672-
<div class="paragraph">
673-
<p>OpenTracing has been deprecated in favor of OpenTelemetry.
674-
For tracing information, please check the related section about <a href="#datasource-tracing">Datasource tracing</a>, bellow.</p>
675-
</div>
676-
</td>
677-
</tr>
678-
</table>
679-
</div>
680-
<div class="listingblock">
681-
<div class="title">A custom driver definition example with the legacy OpenTracing driver:</div>
682-
<div class="content">
683-
<pre class="highlightjs highlight"><code class="language-properties hljs" data-lang="properties">quarkus.datasource.jdbc.driver=io.opentracing.contrib.jdbc.TracingDriver</code></pre>
684-
</div>
685-
</div>
686665
<div class="listingblock">
687666
<div class="title">An example for defining access to a database with no built-in support in JVM mode:</div>
688667
<div class="content">

0 commit comments

Comments
 (0)