Skip to content

Commit

Permalink
fixed the fp value to ignore touch
Browse files Browse the repository at this point in the history
  • Loading branch information
smadappa committed Oct 22, 2016
1 parent 259b4c2 commit 6c72808
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public ConnectionFactory getConnectionFactory() {
this.chunkSize = EVCacheConfig.getInstance().getChainedIntProperty(this.serverGroup.getName() + ".chunk.size", appName + ".chunk.size", 1180);
this.chunkingTranscoder = new ChunkTranscoder();
this.maxWriteQueueSize = maxQueueSize;
this.ignoreTouch = EVCacheConfig.getInstance().getChainedBooleanProperty(appName + this.serverGroup.getName() + ".ignore.touch", appName + ".ignore.touch", false);
this.ignoreTouch = EVCacheConfig.getInstance().getChainedBooleanProperty(appName + "." + this.serverGroup.getName() + ".ignore.touch", appName + ".ignore.touch", false);

this.evcacheMemcachedClient = new EVCacheMemcachedClient(connectionFactory, memcachedNodesInZone, readTimeout, appName, zone, id, serverGroup, this);
this.connectionObserver = new EVCacheConnectionObserver(appName, serverGroup, id);
Expand Down

0 comments on commit 6c72808

Please sign in to comment.