Skip to content

Commit

Permalink
SNAPSHOT bump
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Jan 7, 2025
1 parent f2746ba commit c9c8a29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.atomgraph</groupId>
<artifactId>linkeddatahub</artifactId>
<version>5.0.5-SNAPSHOT</version>
<version>5.0.6-SNAPSHOT</version>
<packaging>${packaging.type}</packaging>

<name>AtomGraph LinkedDataHub</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/atomgraph/linkeddatahub/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -1400,7 +1400,7 @@ public void releaseConnection(final HttpClientConnection managedConn, final Obje
config.property(ApacheClientProperties.RETRY_HANDLER, (HttpRequestRetryHandler) (IOException ex, int executionCount, HttpContext context) ->
{
// Extract the HTTP host from the context
HttpHost targetHost = (HttpHost) context.getAttribute(HttpCoreContext.HTTP_TARGET_HOST);
HttpHost targetHost = (HttpHost)context.getAttribute(HttpCoreContext.HTTP_TARGET_HOST);
String serverName = targetHost != null ? targetHost.getHostName() : "Unknown";

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

if (executionCount > maxRequestRetries)
Expand Down

0 comments on commit c9c8a29

Please sign in to comment.