summaryrefslogtreecommitdiff
path: root/src/couchdb/couch_server_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/couchdb/couch_server_sup.erl')
-rw-r--r--src/couchdb/couch_server_sup.erl7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/couchdb/couch_server_sup.erl b/src/couchdb/couch_server_sup.erl
index 6fed6223..22318154 100644
--- a/src/couchdb/couch_server_sup.erl
+++ b/src/couchdb/couch_server_sup.erl
@@ -97,12 +97,6 @@ start_server(InputIniFilename) ->
brutal_kill,
worker,
[couch_server]},
- {couch_util,
- {couch_util, start_link, [UtilDriverDir]},
- permanent,
- brutal_kill,
- worker,
- [couch_util]},
{couch_query_servers,
{couch_query_servers, start_link, [QueryServers]},
permanent,
@@ -146,6 +140,7 @@ start_server(InputIniFilename) ->
io:format("couch ~s (LogLevel=~s)~n", [couch_server:get_version(), LogLevel]),
io:format("~s~n", [ConsoleStartupMsg]),
+ couch_util:start_driver(UtilDriverDir),
% ensure these applications are running
application:start(inets),