Skip to content

Commit 35992ec

Browse files
authored
Merge branch 'master' into alejandro.gonzalez/rc-waf-rules-dup-bug
2 parents dcf39bd + a847d94 commit 35992ec

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ validate_supported_configurations_v2_local_file:
10021002
extends: .validate_supported_configurations_v2_local_file
10031003
variables:
10041004
LOCAL_JSON_PATH: "metadata/supported-configurations.json"
1005-
BACKFILLED: "true"
1005+
BACKFILLED: "false"
10061006

10071007
update_central_configurations_version_range_v2:
10081008
extends: .update_central_configurations_version_range_v2

dd-java-agent/instrumentation/redisson/redisson-3.10.3/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ muzzle {
55
module = "redisson"
66
versions = "[3.10.3,)"
77
skipVersions += "0.9.0"
8+
skipVersions += "4.0.0" // FIXME: Temporary skip `4.0.0` as we need more time to support it.
89
assertInverse = true
910
}
1011
}

dd-java-agent/instrumentation/spark/src/main/java/datadog/trace/instrumentation/spark/AbstractDatadogSparkListener.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
import org.apache.spark.sql.execution.SQLExecution;
5959
import org.apache.spark.sql.execution.SparkPlanInfo;
6060
import org.apache.spark.sql.execution.metric.SQLMetricInfo;
61-
import org.apache.spark.sql.execution.streaming.StreamExecution;
6261
import org.apache.spark.sql.execution.ui.SparkListenerSQLExecutionEnd;
6362
import org.apache.spark.sql.execution.ui.SparkListenerSQLExecutionStart;
6463
import org.apache.spark.sql.streaming.SourceProgress;
@@ -1264,7 +1263,7 @@ private static String getStreamingBatchKey(Properties properties) {
12641263
return null;
12651264
}
12661265

1267-
Object queryId = properties.get(StreamExecution.QUERY_ID_KEY());
1266+
Object queryId = properties.get("sql.streaming.queryId");
12681267
Object batchId = properties.get("streaming.sql.batchId");
12691268

12701269
if (queryId == null || batchId == null) {

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ include(
627627
)
628628

629629
// Optional `akka-http-10.6` instrumentation (see BUILDING.md for how to enable it):
630-
if (providers.gradleProperty("akkaRepositoryToken").isPresent) {
630+
if (providers.gradleProperty("akkaRepositoryToken").getOrElse("").isNotBlank()) {
631631
include(
632632
":dd-java-agent:instrumentation:akka:akka-http:akka-http-10.6"
633633
)

0 commit comments

Comments
 (0)