Skip to content
Open
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 @@ -22,12 +22,6 @@ import spock.lang.Shared

class MuleForkedTest extends WithHttpServer<MuleTestContainer> {

// TODO since mule uses reactor core, things sometime propagate to places where they're not closed
@Override
boolean useStrictTraceWrites() {
return false
}

@Override
protected void configurePreAgent() {
super.configurePreAgent()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ import spock.lang.Shared

class MuleHttpServerForkedTest extends HttpServerTest<MuleTestContainer> {

// TODO since mule uses reactor core, things sometime propagate to places where they're not closed
@Override
boolean useStrictTraceWrites() {
return false
}

@Override
boolean testRedirect() {
// Dynamic adding of headers to and HttpResponse from inside a mule application seems
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ class OpensearchRestClientTest extends InstrumentationSpecification {
@Shared
RestClient client

@Override
boolean useStrictTraceWrites() {
//FIXME IDM
false
}

def setupSpec() {

aosWorkingDir = File.createTempDir("test-aos-working-dir-", "")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ class OpensearchNodeClientTest extends InstrumentationSpecification {

def client = testNode.client()

@Override
boolean useStrictTraceWrites() {
//FIXME IDM
false
}

@Override
protected void configurePreAgent() {
super.configurePreAgent()
Expand Down
Loading