We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8e9292 commit 4cf05c3Copy full SHA for 4cf05c3
dd-smoke-tests/log-injection/src/main/java/datadog/smoketest/loginjection/BaseApplication.java
@@ -15,6 +15,10 @@ public abstract class BaseApplication {
15
public abstract void doLog(String message);
16
17
public void run() throws InterruptedException {
18
+ if (!waitForCondition(() -> null != getLogInjectionEnabled())) {
19
+ throw new RuntimeException("Logs injection config was never received");
20
+ }
21
+
22
doLog("BEFORE FIRST SPAN");
23
24
firstTracedMethod();
0 commit comments