Skip to content

Commit ae94e39

Browse files
authored
Updated docker images (#1172)
Signed-off-by: dhoard <doug.hoard@gmail.com>
1 parent a15bb66 commit ae94e39

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

collector/src/main/java/io/prometheus/jmx/MatchedRule.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ public MatchedRule(
8181
/**
8282
* Constructor
8383
*
84-
* @param name name - has to be already sanitized (we ensure this by keeping the constructor private)
84+
* @param name name - has to be already sanitized (we ensure this by keeping the constructor
85+
* private)
8586
* @param matchName matchName
8687
* @param type type
8788
* @param help help
@@ -90,13 +91,13 @@ public MatchedRule(
9091
* @param valueFactor valueFactor
9192
*/
9293
private MatchedRule(
93-
final String name,
94-
final String matchName,
95-
final String type,
96-
final String help,
97-
final Labels labels,
98-
final Double value,
99-
double valueFactor) {
94+
final String name,
95+
final String matchName,
96+
final String type,
97+
final String help,
98+
final Labels labels,
99+
final Double value,
100+
double valueFactor) {
100101
this.name = name;
101102
this.matchName = matchName;
102103
this.type = type;
@@ -192,7 +193,6 @@ public boolean equals(Object o) {
192193

193194
@Override
194195
public int hashCode() {
195-
return Objects.hash(
196-
name, matchName, type, help, labels, value, valueFactor);
196+
return Objects.hash(name, matchName, type, help, labels, value, valueFactor);
197197
}
198198
}

integration_test_suite/integration_tests/src/test/resources/java-docker-images.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ amazoncorretto:17
1010
amazoncorretto:21
1111
amazoncorretto:22
1212
amazoncorretto:24
13-
antublue/openjdk:25-ea-3
13+
antublue/openjdk:25-ea-22
1414
antublue/openlogic-openjdk:8
1515
antublue/openlogic-openjdk:11
1616
antublue/openlogic-openjdk:17

integration_test_suite/integration_tests/src/test/resources/prometheus-docker-images.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ prom/prometheus:v2.55.1
1010
prom/prometheus:v3.0.1
1111
prom/prometheus:v3.1.0
1212
prom/prometheus:v3.2.1
13-
prom/prometheus:v3.3.0
13+
prom/prometheus:v3.3.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
prom/prometheus:v3.3.0
1+
prom/prometheus:v3.3.1

run-quick-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
(
2424
export JAVA_DOCKER_IMAGES="eclipse-temurin:21-alpine"
25-
export PROMETHEUS_DOCKER_IMAGES="prom/prometheus:v3.2.1"
25+
export PROMETHEUS_DOCKER_IMAGES="prom/prometheus:v3.3.1"
2626
docker pull "$JAVA_DOCKER_IMAGES"
2727
docker pull "$PROMETHEUS_DOCKER_IMAGES"
2828
./mvnw clean verify

0 commit comments

Comments
 (0)