Skip to content

Commit 2b8facf

Browse files
author
m.zharinova
committed
fix after merge master
1 parent bf5d896 commit 2b8facf

File tree

4 files changed

+4
-11
lines changed

4 files changed

+4
-11
lines changed

buildSrc/src/main/kotlin/sb-ot-demo.jacoco-rules.gradle.kts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,6 @@ tasks {
3434
minimum = "0.93".toBigDecimal()
3535
}
3636
}
37-
// rule {
38-
// limit {
39-
// counter = "BRANCH"
40-
// value = "COVEREDRATIO"
41-
// minimum = "0.66".toBigDecimal()
42-
// }
43-
// }
4437
}
4538
}
4639
}

spring-boot-3-demo-app-reactive/src/test/java/io/github/mfvanek/spring/boot3/reactive/ApplicationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ void contextLoads() {
5151
endpointPath=/opentelemetry.proto.collector.trace.v1.TraceService/Export, \
5252
timeoutNanos=5000000000, connectTimeoutNanos=10000000000, compressorEncoding=null, \
5353
headers=Headers{User-Agent=OBFUSCATED}, \
54-
retryPolicy=RetryPolicy{maxAttempts=5, initialBackoff=PT1S, maxBackoff=PT5S, backoffMultiplier=1.5}, \
55-
memoryMode=IMMUTABLE_DATA}""", JaegerInitializer.getFirstMappedPort()));
54+
retryPolicy=RetryPolicy{maxAttempts=5, initialBackoff=PT1S, maxBackoff=PT5S, backoffMultiplier=1.5, \
55+
retryExceptionPredicate=null}, serviceClassLoader=jdk.internal.loader.ClassLoaders$AppClassLoader@2c7b84de, memoryMode=REUSABLE_DATA}""", JaegerInitializer.getFirstMappedPort()));
5656
}
5757

5858
@Test

spring-boot-3-demo-app-reactive/src/test/java/io/github/mfvanek/spring/boot3/reactive/IndexesMaintenanceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void databaseStructureCheckForPublicSchema() {
4242
checks.stream()
4343
.filter(DatabaseCheckOnHost::isStatic)
4444
.forEach(check ->
45-
assertThat(check.check(PgContext.ofPublic(), SkipLiquibaseTablesPredicate.ofPublic()))
45+
assertThat(check.check(PgContext.ofDefault(), SkipLiquibaseTablesPredicate.ofDefault()))
4646
.as(check.getDiagnostic().name())
4747
.isEmpty());
4848
}

spring-boot-3-demo-app-reactive/src/test/java/io/github/mfvanek/spring/boot3/reactive/controllers/TimeControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void cleanUpDatabase() {
7272

7373
@Order(1)
7474
@Test
75-
void spanShouldBeReportedInLogs(@Nonnull final CapturedOutput output) throws Exception {
75+
void spanShouldBeReportedInLogs(@Nonnull final CapturedOutput output) throws InterruptedException {
7676
stubOkResponse(ParsedDateTime.from(LocalDateTime.now(clock).minusDays(1)));
7777

7878
final EntityExchangeResult<LocalDateTime> result = webTestClient.get()

0 commit comments

Comments
 (0)