Skip to content

Commit

Permalink
deploy: 1d7acc7
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Jan 4, 2025
1 parent 0a65493 commit d64d581
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Quarkus</title>
<link>https://quarkus.io</link>
<description>Quarkus: Supersonic Subatomic Java</description>
<lastBuildDate>Fri, 03 Jan 2025 03:07:29 +0000</lastBuildDate>
<lastBuildDate>Sat, 04 Jan 2025 03:06:14 +0000</lastBuildDate>


<item>
Expand Down
2 changes: 1 addition & 1 deletion version/main/guides/context-propagation.html
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ <h2 id="usage-example-for-completionstage"><a class="anchor" href="#usage-exampl
// Create a REST client to the Star Wars API
WebClient client = WebClient.create(vertx,
new WebClientOptions()
.setDefaultHost("swapi.dev")
.setDefaultHost("swapi.net")
.setDefaultPort(443)
.setSsl(true));
// get the list of Star Wars people, with context capture
Expand Down
4 changes: 2 additions & 2 deletions version/main/guides/mongodb-dev-services.html
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ <h1 class="text-caps">Dev Services for MongoDB </h1>
<div class="sectionbody">
<div class="paragraph">
<p>Quarkus supports a feature called Dev Services that allows you to create various datasources without any config. In the case of MongoDB this support extends to the default MongoDB connection.
What that means practically, is that if you have not configured <code>quarkus.mongodb.connection-string</code>, Quarkus will automatically start a MongoDB container when running tests or in dev mode,
and automatically configure the connection.</p>
What that means practically, is that if you have not configured <code>quarkus.mongodb.connection-string</code> nor <code>quarkus.mongodb.hosts</code>, Quarkus will automatically start a MongoDB container when
running tests or in dev mode, and automatically configure the connection.</p>
</div>
<div class="paragraph">
<p>MongoDB Dev Services is based on <a href="https://www.testcontainers.org/modules/databases/mongodb/">Testcontainers MongoDB module</a> that will start a single node replicaset.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2755,12 +2755,12 @@ <h3 id="code-flow-integration-testing-wiremock"><a class="anchor" href="#code-fl
// the test REST endpoint listens on '/code-flow'
HtmlPage page = webClient.getPage("http://localhost:8081/code-flow");

HtmlForm form = page.getFormByName("form");
HtmlForm form = page.getForms().get(0);
// user 'alice' has the 'user' role
form.getInputByName("username").type("alice");
form.getInputByName("password").type("alice");

page = form.getInputByValue("login").click();
page = form.getButtonByName("login").click();

assertEquals("alice", page.getBody().asNormalizedText());
}
Expand Down
8 changes: 4 additions & 4 deletions version/main/guides/security-openid-connect-multitenancy.html
Original file line number Diff line number Diff line change
Expand Up @@ -966,9 +966,9 @@ <h3 id="use-dev-services-for-keycloak"><a class="anchor" href="#use-dev-services
loginForm.getInputByName("username").setValueAttribute("alice");
loginForm.getInputByName("password").setValueAttribute("alice");

page = loginForm.getInputByName("login").click();
page = loginForm.getButtonByName("login").click();

assertTrue(page.asText().contains("tenant"));
assertTrue(page.asNormalizedText().contains("tenant"));
}
}

Expand All @@ -984,9 +984,9 @@ <h3 id="use-dev-services-for-keycloak"><a class="anchor" href="#use-dev-services
loginForm.getInputByName("username").setValueAttribute("alice");
loginForm.getInputByName("password").setValueAttribute("alice");

page = loginForm.getInputByName("login").click();
page = loginForm.getButtonByName("login").click();

assertTrue(page.asText().contains("[email protected]"));
assertTrue(page.asNormalizedText().contains("[email protected]"));
}
}

Expand Down

0 comments on commit d64d581

Please sign in to comment.