You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2020/06/03 10:04:29 UTC

[httpcomponents-client] branch master updated: fix typo log debug messages

This is an automated email from the ASF dual-hosted git repository.

olegk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git


The following commit(s) were added to refs/heads/master by this push:
     new 5463511  fix typo log debug messages
5463511 is described below

commit 546351160b1cffb4035573df053c10d09f2882b7
Author: smashtakov <s....@gmail.com>
AuthorDate: Wed Jun 3 12:10:00 2020 +0300

    fix typo log debug messages
---
 .../java/org/apache/hc/client5/http/impl/async/AsyncProtocolExec.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/httpclient5/src/main/java/org/apache/hc/client5/http/impl/async/AsyncProtocolExec.java b/httpclient5/src/main/java/org/apache/hc/client5/http/impl/async/AsyncProtocolExec.java
index 362d3f4..5a15910 100644
--- a/httpclient5/src/main/java/org/apache/hc/client5/http/impl/async/AsyncProtocolExec.java
+++ b/httpclient5/src/main/java/org/apache/hc/client5/http/impl/async/AsyncProtocolExec.java
@@ -217,7 +217,7 @@ public final class AsyncProtocolExec implements AsyncExecChainHandler {
                     if (targetAuthExchange.getState() == AuthExchange.State.SUCCESS
                             && targetAuthExchange.isConnectionBased()) {
                         if (log.isDebugEnabled()) {
-                            log.debug(exchangeId + ": esetting target auth state");
+                            log.debug(exchangeId + ": resetting target auth state");
                         }
                         targetAuthExchange.reset();
                     }
@@ -226,7 +226,7 @@ public final class AsyncProtocolExec implements AsyncExecChainHandler {
                 if (challenged.get()) {
                     if (entityProducer != null && !entityProducer.isRepeatable()) {
                         if (log.isDebugEnabled()) {
-                            log.debug(exchangeId + ": annot retry non-repeatable request");
+                            log.debug(exchangeId + ": cannot retry non-repeatable request");
                         }
                         asyncExecCallback.completed();
                     } else {