You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2012/11/14 11:31:33 UTC

git commit: Ensure uuid is generated before port is bound

Updated Branches:
  refs/heads/1259-stable_replication_ids 39fe99825 -> dbd1e19e0


Ensure uuid is generated before port is bound


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/dbd1e19e
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/dbd1e19e
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/dbd1e19e

Branch: refs/heads/1259-stable_replication_ids
Commit: dbd1e19e0044b7bf6449e6ff92fcacffa20e87b2
Parents: 39fe998
Author: Robert Newson <rn...@apache.org>
Authored: Wed Nov 14 10:31:00 2012 +0000
Committer: Robert Newson <rn...@apache.org>
Committed: Wed Nov 14 10:31:00 2012 +0000

----------------------------------------------------------------------
 src/couchdb/couch_httpd.erl |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/dbd1e19e/src/couchdb/couch_httpd.erl
----------------------------------------------------------------------
diff --git a/src/couchdb/couch_httpd.erl b/src/couchdb/couch_httpd.erl
index 3774b85..7267206 100644
--- a/src/couchdb/couch_httpd.erl
+++ b/src/couchdb/couch_httpd.erl
@@ -127,6 +127,7 @@ start_link(Name, Options) ->
         couch_config:get("httpd", "socket_options", "[]")),
 
     set_auth_handlers(),
+    couch_server:get_uuid(),
 
     Loop = fun(Req)->
         case SocketOptions of