Skip to content

Commit f22b5f4

Browse files
Fix smoke tests
1 parent 43064a6 commit f22b5f4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

dd-smoke-tests/feature-flagging/src/test/groovy/datadog/smoketest/springboot/OpenFeatureProviderSmokeTest.groovy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ class OpenFeatureProviderSmokeTest extends AbstractServerSmokeTest {
3535

3636
final springBootShadowJar = System.getProperty("datadog.smoketest.springboot.shadowJar.path")
3737
final command = [javaPath()]
38-
command.add('-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005')
3938
command.addAll(defaultJavaProperties)
4039
command.add('-Ddd.trace.debug=true')
4140
command.add('-Ddd.remote_config.enabled=true')

dd-smoke-tests/src/main/groovy/datadog/smoketest/AbstractSmokeTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ abstract class AbstractSmokeTest extends ProcessManager {
179179
try {
180180
final path = request.path.toString()
181181
final body = request.getBody()
182-
final decoded = decodeEvpMessage.call(path, body)
182+
final decoded = decodeEvpMessage?.call(path, body)
183183
if (decoded) {
184-
evpProxyMessages.add(new Tuple2<>(path, decodeEvpMessage.call(path, body)))
184+
evpProxyMessages.add(new Tuple2<>(path, decoded))
185185
}
186186
response.status(200).send()
187187
} catch (Throwable t) {

0 commit comments

Comments
 (0)