diff --git a/conf/_replicadb.conf b/conf/_replicadb.conf index 8fd494b..f8ebf78 100644 --- a/conf/_replicadb.conf +++ b/conf/_replicadb.conf @@ -4,7 +4,7 @@ mode=complete ## integer greater than 0 jobs=1 -fetch.size=5000 +fetch.size=100 ## Adds a bandwidth cap for the replication in KB/sec. #bandwidth.throttling= diff --git a/pom.xml b/pom.xml index aa9bd43..69226b0 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.replicadb ReplicaDB - 0.11.0 + 0.11.1 ReplicaDB https://github.com/osalvador/ReplicaDB diff --git a/src/main/java/org/replicadb/manager/file/FileManager.java b/src/main/java/org/replicadb/manager/file/FileManager.java index 187a3ee..780f001 100644 --- a/src/main/java/org/replicadb/manager/file/FileManager.java +++ b/src/main/java/org/replicadb/manager/file/FileManager.java @@ -93,7 +93,6 @@ public static synchronized Map getTempFilesPath() { public static synchronized void setTempFilePath(int taskId, String path) { tempFilesPath.put(taskId, path); - //LOG.debug("A new value has been set in the temporary file map. taskId {} - path {}. Map: {}", taskId, path, tempFilesPath); } public static synchronized String getTempFilePath(int idx) {