Github user sagelywizard commented on a diff in the pull request:
https://github.com/apache/couchdb-couch/pull/237#discussion_r106013787
--- Diff: src/couch_server.erl ---
@@ -91,11 +91,8 @@ open(DbName, Options0) ->
end
end.
-update_lru(DbName, Options) ->
- case lists:member(sys_db, Options) of
- false -> gen_server:cast(couch_server, {update_lru, DbName});
- true -> ok
- end.
+update_lru(DbName, _Options) ->
--- End diff --
Though it'll only be problematic if you force an upgrade mid-call to
`couch_db:open/2`, right? Might be worth leaving in just so those don't crash,
but it'd be nice to have a path going forward to remove that cruft.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---