You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2021/10/20 19:53:21 UTC

[couchdb] branch chewbranca-ioq-experiments-segmented updated: Proper segmented_cache instantiation

This is an automated email from the ASF dual-hosted git repository.

chewbranca pushed a commit to branch chewbranca-ioq-experiments-segmented
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/chewbranca-ioq-experiments-segmented by this push:
     new ed2690a  Proper segmented_cache instantiation
ed2690a is described below

commit ed2690acc701493554f9b161f8b2b0fb327e8b35
Author: Russell Branca <ch...@apache.org>
AuthorDate: Wed Oct 20 12:53:09 2021 -0700

    Proper segmented_cache instantiation
---
 src/couch/src/couch_sup.erl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/couch/src/couch_sup.erl b/src/couch/src/couch_sup.erl
index 878e662..d58286e 100644
--- a/src/couch/src/couch_sup.erl
+++ b/src/couch/src/couch_sup.erl
@@ -60,8 +60,8 @@ init(_Args) ->
             [config_listener_mon]
         },
         {
-            couch_cache,
-            {segmented_cache, start_link, [CacheArgs]},
+            ?COUCH_CACHE,
+            {segmented_cache, start_link, [?COUCH_CACHE, CacheArgs]},
             permanent,
             5000,
             worker,