You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/06/30 16:33:11 UTC

cxf git commit: [CXF-7042] Fixing a typo spotted by Stefan Funk

Repository: cxf
Updated Branches:
  refs/heads/master 33eb378e4 -> 3c8f552f6


[CXF-7042] Fixing a typo spotted by Stefan Funk


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/3c8f552f
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/3c8f552f
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/3c8f552f

Branch: refs/heads/master
Commit: 3c8f552f65f878d7631b82ad512781ef5a1a229c
Parents: 33eb378
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Fri Jun 30 17:32:57 2017 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Fri Jun 30 17:32:57 2017 +0100

----------------------------------------------------------------------
 .../src/main/java/org/apache/cxf/jaxrs/client/spec/ClientImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/3c8f552f/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/spec/ClientImpl.java
----------------------------------------------------------------------
diff --git a/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/spec/ClientImpl.java b/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/spec/ClientImpl.java
index 8a19043..12649d8 100644
--- a/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/spec/ClientImpl.java
+++ b/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/spec/ClientImpl.java
@@ -346,7 +346,7 @@ public class ClientImpl implements Client {
                 }
                 bean.setThreadSafe(threadSafe);
                 if (threadSafe) {
-                    Integer cleanupPeriod = getIntValue(configProps.get(THREAD_SAFE_CLIENT_PROP));
+                    Integer cleanupPeriod = getIntValue(configProps.get(THREAD_SAFE_CLIENT_STATE_CLEANUP_PROP));
                     if (cleanupPeriod == null) {
                         cleanupPeriod = THREAD_SAFE_CLIENT_STATE_CLEANUP_PERIOD;
                     }