You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _versions/main/guides/funqy-gcp-functions.adoc
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -147,7 +147,7 @@ You will have a single JAR inside the `target/deployment` repository that contai
147
147
Then you will be able to use `gcloud` to deploy your function to Google Cloud.
148
148
The `gcloud` command will be different depending on which event triggers your function.
149
149
150
-
NOTE: We will use the Java 17 runtime but you can switch to the Java 21 runtime by using `--runtime=java21` instead of `--runtime=java17` on the deploy commands.
150
+
NOTE: We will use the Java 21 runtime, but you can switch to the Java 17 runtime by using `--runtime=java17` instead of `--runtime=java21` on the deploy commands.
151
151
152
152
[WARNING]
153
153
====
@@ -168,7 +168,7 @@ Use this command to deploy to Google Cloud Functions:
This extension provides a `@WithFunction` annotation that can be used to annotate `@QuarkusTest` test cases to start a Cloud Function invoker before you test cases and stop it at the end.
Copy file name to clipboardExpand all lines: _versions/main/guides/gcp-functions-http.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,13 +162,13 @@ The result of the previous command is a single JAR file inside the `target/deplo
162
162
163
163
Then you will be able to use `gcloud` to deploy your function to Google Cloud.
164
164
165
-
NOTE: We will use the Java 17 runtime but you can switch to the Java 21 runtime by using `--runtime=java21` instead of `--runtime=java17` on the deploy commands.
165
+
NOTE: We will use the Java 21 runtime, but you can switch to the Java 17 runtime by using `--runtime=java17` instead of `--runtime=java21` on the deploy commands.
Copy file name to clipboardExpand all lines: _versions/main/guides/gcp-functions.adoc
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -242,7 +242,7 @@ The result of the previous command is a single JAR file inside the `target/deplo
242
242
Then you will be able to use `gcloud` to deploy your function to Google Cloud.
243
243
The `gcloud` command will be different depending on which event triggers your function.
244
244
245
-
NOTE: We will use the Java 17 runtime but you can switch to the Java 21 runtime by using `--runtime=java21` instead of `--runtime=java17` on the deploy commands.
245
+
NOTE: We will use the Java 21 runtime but you can switch to the Java 17 runtime by using `--runtime=java17` instead of `--runtime=java21` on the deploy commands.
246
246
247
247
[WARNING]
248
248
====
@@ -262,7 +262,7 @@ This is an example command to deploy your `HttpFunction` to Google Cloud:
This extension provides a `@WithFunction` annotation that can be used to annotate `@QuarkusTest` test cases to start a Cloud Function invoker before you test cases and stop it at the end.
Copy file name to clipboardExpand all lines: _versions/main/guides/opentelemetry-tracing.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ We have 2 options:
121
121
122
122
* Take a look at: xref:observability-devservices-lgtm.adoc[Getting Started with Grafana-OTel-LGTM].
123
123
124
-
This features a Quarkus Dev service including a Grafana for visualizing data, Loki to store logs, Tempo to store traces and Prometheus to store metrics. Also provides and OTel collector to receive the data.
124
+
This features a Quarkus Dev service including a Grafana for visualizing data, Loki to store logs, Tempo to store traces and Prometheus to store metrics. Also provides an OTel collector to receive the data.
Copy file name to clipboardExpand all lines: _versions/main/guides/writing-extensions.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1997,7 +1997,7 @@ static record KeyPairContext(Map<String, String> properties) {}
1997
1997
1998
1998
<1> You can retrieve the context from `LiveReloadBuildItem`. This call returns `null` if there is no context for the specified type; otherwise, it returns the stored instance from a previous live reload execution.
1999
1999
<2> You can check if this is the first execution (not a live reload).
2000
-
<3> The `LiveReloadBuildItem#setContext` method allows you to set a context across live reloads.
2000
+
<3> The `LiveReloadBuildItem#setContextObject` method allows you to set a context across live reloads.
0 commit comments