Skip to content

Commit

Permalink
changing default value from 128 to 1024
Browse files Browse the repository at this point in the history
  • Loading branch information
mschoch committed Feb 22, 2013
1 parent 0a1a5c6 commit ab920a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public CouchbaseCAPITransportImpl(Settings settings, RestController restControll
this.checkpointDocumentType = settings.get("couchbase.checkpointDocumentType", DEFAULT_DOCUMENT_TYPE_CHECKPOINT);
this.dynamicTypePath = settings.get("couchbase.dynamicTypePath");
this.resolveConflicts = settings.getAsBoolean("couchbase.resolveConflicts", true);
this.maxConcurrentRequests = settings.getAsLong("couchbase.maxConcurrentRequests", 128L);
this.maxConcurrentRequests = settings.getAsLong("couchbase.maxConcurrentRequests", 1024L);

int defaultNumVbuckets = 1024;
if(System.getProperty("os.name").toLowerCase().contains("mac")) {
Expand Down

0 comments on commit ab920a3

Please sign in to comment.