Skip to content

Commit

Permalink
Merge pull request #506 from scireum/feature/ool/SIRI-893
Browse files Browse the repository at this point in the history
SIRI-893: Modifies the log message and fixes a NullPointer.
  • Loading branch information
oolscireum authored Oct 27, 2023
2 parents 298d2cb + 4fcc2ff commit b500b32
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/sirius/kernel/xml/Outcall.java
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,7 @@ private void checkTimeoutBlacklist() throws IOException {
if (timeout != null) {
if (timeout > System.currentTimeMillis()) {
throw new IOException(Strings.apply(
"Connecting to host %s with blacklistid %s is currently rejected due to connectivity issues.",
request.uri().getHost(),
"Connections with blacklist identifier %s are currently rejected due to connectivity issues.",
blacklistId));
} else {
timeoutBlacklist.remove(blacklistId);
Expand Down

0 comments on commit b500b32

Please sign in to comment.