Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 57ab359

Browse files
committedJan 24, 2025·
Merge branch 'trunk' into KAFKA-18530
# Conflicts: # core/src/test/scala/unit/kafka/server/ClientQuotasRequestTest.scala
2 parents f49b70e + 8c0a0e0 commit 57ab359

File tree

335 files changed

+5599
-3760
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

335 files changed

+5599
-3760
lines changed
 

‎.github/scripts/develocity_reports.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ def get_develocity_class_link(class_name: str, threshold_days: int, test_type: s
889889
threshold_days: Number of days to look back in search
890890
test_type: Type of test (e.g., "quarantinedTest", "test")
891891
"""
892-
base_url = "https://ge.apache.org/scans/tests"
892+
base_url = "https://develocity.apache.org/scans/tests"
893893
params = {
894894
"search.rootProjectNames": "kafka",
895895
"search.tags": "github,trunk",
@@ -913,7 +913,7 @@ def get_develocity_method_link(class_name: str, method_name: str, threshold_days
913913
threshold_days: Number of days to look back in search
914914
test_type: Type of test (e.g., "quarantinedTest", "test")
915915
"""
916-
base_url = "https://ge.apache.org/scans/tests"
916+
base_url = "https://develocity.apache.org/scans/tests"
917917

918918
# Extract just the method name without the class prefix
919919
if '.' in method_name:
@@ -1186,7 +1186,7 @@ def main():
11861186
exit(1)
11871187

11881188
# Configuration
1189-
BASE_URL = "https://ge.apache.org"
1189+
BASE_URL = "https://develocity.apache.org"
11901190
PROJECT = "kafka"
11911191
QUARANTINE_THRESHOLD_DAYS = 7
11921192
MIN_FAILURE_RATE = 0.1

‎.github/scripts/junit.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ class TestSuite:
9191
def clean_test_name(test_name: str) -> str:
9292
cleaned = test_name.strip("\"").rstrip("()")
9393
m = method_matcher.match(cleaned)
94-
return m.group(1)
94+
if m is None:
95+
raise ValueError(f"Could not parse test name '{test_name}'. Expected a valid Java method name.")
96+
else:
97+
return m.group(1)
9598

9699

97100
class TestCatalogExporter:

0 commit comments

Comments
 (0)