Skip to content

Commit

Permalink
2.7 stability fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo gonzalez granados committed Jun 7, 2022
1 parent 4a196b8 commit 7c90be9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void verifyTelemetry() {
Assertions.assertEquals("Plato", reactive.jsonPath().getString("data.friend_r.name"));

await().atMost(1, TimeUnit.MINUTES).pollInterval(Duration.ofSeconds(10)).untilAsserted(() -> {
String operation = "/graphql";
String operation = "graphql";
Response traces = given().when()
.queryParam("operationName", operation)
.queryParam("lookback", "1h")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ public void getTimeoutWhenResponseItsTooSlow() {
@Test
public void endpointShouldTrace() {
final int pageLimit = 50;
final String expectedOperationName = "/trace/ping";
await().atMost(3, TimeUnit.MINUTES).pollInterval(Duration.ofSeconds(1)).untilAsserted(() -> {
final String expectedOperationName = "trace/ping";
await().atMost(1, TimeUnit.MINUTES).pollInterval(Duration.ofSeconds(1)).untilAsserted(() -> {
whenIMakePingRequest();
thenRetrieveTraces(pageLimit, "1h", getServiceName(), expectedOperationName);
thenStatusCodeMustBe(HttpStatus.SC_OK);
Expand All @@ -117,8 +117,8 @@ public void endpointShouldTrace() {
@Test
public void httpClientShouldHaveHisOwnSpan() {
final int pageLimit = 50;
final String expectedOperationName = "/trace/ping";
await().atMost(3, TimeUnit.MINUTES).pollInterval(Duration.ofSeconds(1)).untilAsserted(() -> {
final String expectedOperationName = "trace/ping";
await().atMost(1, TimeUnit.MINUTES).pollInterval(Duration.ofSeconds(1)).untilAsserted(() -> {
whenIMakePingRequest();
thenRetrieveTraces(pageLimit, "1h", getServiceName(), expectedOperationName);
thenStatusCodeMustBe(HttpStatus.SC_OK);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@QuarkusScenario
public class DevModeKeycloakDevServiceUserExperienceIT {

private static final String KEYCLOAK_VERSION = "18.0";
private static final String KEYCLOAK_VERSION = "16.1.1";
private static final String KEYCLOAK_IMAGE = "quay.io/keycloak/keycloak";

/**
Expand Down

0 comments on commit 7c90be9

Please sign in to comment.