Skip to content

Commit c2ca82f

Browse files
committed
pre commit
1 parent 09822ad commit c2ca82f

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ All notable changes to this project will be documented in this file.
1414
### Changed
1515

1616
- Deprecate support for Kafka `3.7.2` ([#892]).
17-
- BREAKING: The `<cluster>-<role>-<rolegroup>` rolegroup service was replaced with a `<cluster>-<role>-<rolegroup>-headless`
17+
- BREAKING: The `<cluster>-<role>-<rolegroup>` rolegroup service was replaced with a `<cluster>-<role>-<rolegroup>-headless`
1818
and `<cluster>-<role>-<rolegroup>-metrics` rolegroup service ([#897]).
1919

2020
[#889]: https://github.com/stackabletech/kafka-operator/pull/889

tests/templates/kuttl/smoke-kraft/metrics.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
stream=sys.stdout,
1313
)
1414

15-
http_code = requests.get("http://test-kafka-broker-default-metrics:9606").status_code
15+
http_code = requests.get(
16+
"http://test-kafka-broker-default-metrics:9606"
17+
).status_code
1618
if http_code != 200:
1719
result = 1
1820

tests/templates/kuttl/smoke/metrics.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
stream=sys.stdout,
1313
)
1414

15-
http_code = requests.get("http://test-kafka-broker-default-metrics:9606/metrics").status_code
15+
http_code = requests.get(
16+
"http://test-kafka-broker-default-metrics:9606/metrics"
17+
).status_code
1618
if http_code != 200:
1719
result = 1
1820

0 commit comments

Comments
 (0)