Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TracingInterceptor tests fails in Micronaut Reactor #296

Merged
merged 4 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions reactor-http-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ dependencies {
testImplementation(mnSerde.micronaut.serde.jackson)
testImplementation(mn.micronaut.retry)
testRuntimeOnly(mnLogging.logback.classic)
testRuntimeOnly(libs.managed.micrometer.context.propagation)
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import io.micronaut.tracing.annotation.NewSpan
import io.micronaut.tracing.annotation.SpanTag
import reactor.core.publisher.Mono
import reactor.core.scheduler.Schedulers
import spock.lang.PendingFeature
import spock.lang.Specification
import spock.util.concurrent.PollingConditions
import zipkin2.Span
Expand All @@ -27,7 +26,6 @@ class TraceInterceptorSpec extends Specification {
@Inject TracedService tracedService
@Inject TestReporter reporter

@PendingFeature
void "test trace mono"() {
when:
String result = tracedService.mono("test").block()
Expand Down
Loading