Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@
@AutoService(InstrumenterModule.class)
public class KotlinCoroutinesModule extends InstrumenterModule.Tracing {
public KotlinCoroutinesModule() {
super("kotlin_coroutine.experimental");
}

@Override
protected final boolean defaultEnabled() {
return false;
super("kotlin_coroutine");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@ abstract class AbstractKotlinCoroutineInstrumentationTest<T extends CoreKotlinCo
['single thread pool', ThreadPoolDispatcherKt.newSingleThreadContext("Single-Thread")],
]

@Override
void configurePreAgent() {
super.configurePreAgent()

injectSysConfig("dd.integration.kotlin_coroutine.experimental.enabled", "true")
}

def "kotlin cancellation prevents trace #dispatcherName"() {
setup:
CoreKotlinCoroutineTests kotlinTest = getCoreKotlinCoroutineTestsInstance(dispatcher)
Expand Down