diff options
author | Nick Vatamaniuc <vatamane@apache.org> | 2019-07-11 12:03:31 -0400 |
---|---|---|
committer | Nick Vatamaniuc <nickva@users.noreply.github.com> | 2019-07-11 14:31:09 -0400 |
commit | 85dc624bdbb01189b1e100ca3944de2f514abd0b (patch) | |
tree | e0663b3a4e3382b733284c9b6b048bb4bab87070 | |
parent | 9d143bae29782e8983723ed91a66bcfd9db137d7 (diff) | |
download | couchdb-85dc624bdbb01189b1e100ca3944de2f514abd0b.tar.gz |
Fix max_document_id_length value in default.ini
The code has "infinity" as the default value and not 0
See src/couch_replicator/src/couch_replicator_changes_reader.erl
-rw-r--r-- | rel/overlay/etc/default.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini index 5a8d0f952..44aa824e3 100644 --- a/rel/overlay/etc/default.ini +++ b/rel/overlay/etc/default.ini @@ -375,7 +375,7 @@ verify_ssl_certificates = false ; Maximum peer certificate depth (must be set even if certificate validation is off). ssl_certificate_max_depth = 3 ; Maximum document ID length for replication. -;max_document_id_length = 0 +;max_document_id_length = infinity ; How much time to wait before retrying after a missing doc exception. This ; exception happens if the document was seen in the changes feed, but internal ; replication hasn't caught up yet, and fetching document's revisions |