File tree 3 files changed +9
-1
lines changed
main/java/com/rabbitmq/stream/impl
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 24
24
cache : ' maven'
25
25
- name : Start broker
26
26
run : ci/start-broker.sh
27
+ env :
28
+ RABBITMQ_IMAGE : ' pivotalrabbitmq/rabbitmq:token-expiration-in-stream-connections-otp-max-bazel'
27
29
- name : Test
28
30
run : |
29
31
./mvnw verify -Drabbitmqctl.bin=DOCKER:rabbitmq \
Original file line number Diff line number Diff line change @@ -974,7 +974,12 @@ private Address address() {
974
974
}
975
975
976
976
private String label () {
977
- return address .host () + ":" + address .port ();
977
+ Client c = this .nullableClient ();
978
+ if (c == null ) {
979
+ return address .host () + ":" + address .port ();
980
+ } else {
981
+ return c .getHost () + ":" + c .getPort ();
982
+ }
978
983
}
979
984
980
985
@ Override
Original file line number Diff line number Diff line change 6
6
</appender >
7
7
8
8
<logger name =" com.rabbitmq.stream" level =" warn" />
9
+ <!-- <logger name="com.rabbitmq.stream.impl.DefaultExecutorServiceFactory" level="warn" />-->
9
10
10
11
<logger name =" com.rabbitmq.stream.perf.Version" level =" error" />
11
12
You can’t perform that action at this time.
0 commit comments