You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/01/25 01:54:33 UTC

[couchdb] 01/01: Revert default priority change for couch_server

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

wohali pushed a commit to branch revert-prio-flag
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 390f9e6885d16175435aad7af6d2406f316195f2
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Fri Jan 24 20:54:10 2020 -0500

    Revert default priority change for couch_server
---
 src/couch/src/couch_util.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/couch/src/couch_util.erl b/src/couch/src/couch_util.erl
index b5c93ce..180db95 100644
--- a/src/couch/src/couch_util.erl
+++ b/src/couch/src/couch_util.erl
@@ -692,7 +692,7 @@ set_mqd_off_heap(Module) ->
 
 
 set_process_priority(Module, Level) ->
-    case config:get_boolean("process_priority", atom_to_list(Module), true) of
+    case config:get_boolean("process_priority", atom_to_list(Module), false) of
         true ->
             process_flag(priority, Level),
             ok;