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 @@ -27,11 +27,6 @@ public HystrixCommandInstrumentation() {
super("hystrix");
}

@Override
protected boolean defaultEnabled() {
return false;
}

@Override
public AgentBuilder apply(final AgentBuilder agentBuilder) {
return agentBuilder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ public HystrixThreadPoolInstrumentation() {
super("hystrix");
}

@Override
protected boolean defaultEnabled() {
return false;
}

@Override
public AgentBuilder apply(final AgentBuilder agentBuilder) {
return agentBuilder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ import static datadog.trace.agent.test.ListWriterAssert.assertTraces
import static datadog.trace.agent.test.TestUtils.runUnderTrace

class HystrixTest extends AgentTestRunner {
static {
System.setProperty("dd.integration.hystrix.enabled", "true")
// Uncomment for debugging:
// System.setProperty("hystrix.command.default.execution.timeout.enabled", "false")
}
// Uncomment for debugging:
// static {
// System.setProperty("hystrix.command.default.execution.timeout.enabled", "false")
// }

def "test command #action"() {
setup:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ public JaxRsClientInstrumentation() {
super("jax-rs", "jaxrs", "jax-rs-client");
}

@Override
protected boolean defaultEnabled() {
return false;
}

@Override
protected AgentBuilder apply(final AgentBuilder agentBuilder) {
return agentBuilder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ import java.util.concurrent.atomic.AtomicReference
import static ratpack.groovy.test.embed.GroovyEmbeddedApp.ratpack

class JaxRsClientTest extends AgentTestRunner {
static {
System.setProperty("dd.integration.jax-rs.enabled", "true")
}

def receivedHeaders = new AtomicReference<Headers>()
def server = ratpack {
handlers {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ import play.test.Helpers
import spock.lang.Shared

class Play26Test extends AgentTestRunner {
static {
System.setProperty("dd.integration.play.enabled", "true")
}

@Shared
int port = TestUtils.randomOpenPort()
@Shared
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,6 @@ public PlayInstrumentation() {
super("play");
}

@Override
protected boolean defaultEnabled() {
return false;
}

@Override
public AgentBuilder apply(final AgentBuilder agentBuilder) {
return agentBuilder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ import play.test.Helpers
import spock.lang.Shared

class Play24Test extends AgentTestRunner {
static {
System.setProperty("dd.integration.play.enabled", "true")
}

@Shared
int port = TestUtils.randomOpenPort()
@Shared
Expand Down