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:32 UTC

[couchdb] branch revert-prio-flag created (now 390f9e6)

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

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


      at 390f9e6  Revert default priority change for couch_server

This branch includes the following new commits:

     new 390f9e6  Revert default priority change for couch_server

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by wo...@apache.org.
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;