Skip to content

Commit c9c8a29

Browse files
committed
SNAPSHOT bump
1 parent f2746ba commit c9c8a29

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

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

44
<groupId>com.atomgraph</groupId>
55
<artifactId>linkeddatahub</artifactId>
6-
<version>5.0.5-SNAPSHOT</version>
6+
<version>5.0.6-SNAPSHOT</version>
77
<packaging>${packaging.type}</packaging>
88

99
<name>AtomGraph LinkedDataHub</name>

src/main/java/com/atomgraph/linkeddatahub/Application.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,7 +1400,7 @@ public void releaseConnection(final HttpClientConnection managedConn, final Obje
14001400
config.property(ApacheClientProperties.RETRY_HANDLER, (HttpRequestRetryHandler) (IOException ex, int executionCount, HttpContext context) ->
14011401
{
14021402
// Extract the HTTP host from the context
1403-
HttpHost targetHost = (HttpHost) context.getAttribute(HttpCoreContext.HTTP_TARGET_HOST);
1403+
HttpHost targetHost = (HttpHost)context.getAttribute(HttpCoreContext.HTTP_TARGET_HOST);
14041404
String serverName = targetHost != null ? targetHost.getHostName() : "Unknown";
14051405

14061406
if (executionCount > maxRequestRetries)
@@ -1496,7 +1496,7 @@ public void releaseConnection(final HttpClientConnection managedConn, final Obje
14961496
config.property(ApacheClientProperties.RETRY_HANDLER, (HttpRequestRetryHandler) (IOException ex, int executionCount, HttpContext context) ->
14971497
{
14981498
// Extract the HTTP host from the context
1499-
HttpHost targetHost = (HttpHost) context.getAttribute(HttpCoreContext.HTTP_TARGET_HOST);
1499+
HttpHost targetHost = (HttpHost)context.getAttribute(HttpCoreContext.HTTP_TARGET_HOST);
15001500
String serverName = targetHost != null ? targetHost.getHostName() : "Unknown";
15011501

15021502
if (executionCount > maxRequestRetries)

0 commit comments

Comments
 (0)