Author: benoitc
Date: Thu Jun 24 09:01:29 2010
New Revision: 957460
URL: http://svn.apache.org/viewvc?rev=957460&view=rev
Log:
fix issue COUCHDB-805. tested on R13B-04 and R14A. also public_key is
available since R12B5.
Modified:
couchdb/branches/0.11.x/src/couchdb/couch_app.erl
Modified: couchdb/branches/0.11.x/src/couchdb/couch_app.erl
URL: http://svn.apache.org/viewvc/couchdb/branches/0.11.x/src/couchdb/couch_app.erl?rev=957460&r1=957459&r2=957460&view=diff
==============================================================================
--- couchdb/branches/0.11.x/src/couchdb/couch_app.erl (original)
+++ couchdb/branches/0.11.x/src/couchdb/couch_app.erl Thu Jun 24 09:01:29 2010
@@ -20,7 +20,7 @@
start(_Type, DefaultIniFiles) ->
IniFiles = get_ini_files(DefaultIniFiles),
- case start_apps([crypto, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of
+ case start_apps([crypto, public_key, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of
ok ->
couch_server_sup:start_link(IniFiles);
{error, Reason} ->
|