diff options
author | Damien F. Katz <damien@apache.org> | 2009-02-12 16:48:01 +0000 |
---|---|---|
committer | Damien F. Katz <damien@apache.org> | 2009-02-12 16:48:01 +0000 |
commit | 604fd8f4bb95fbf9cb42ff33e094db3ba1f690ab (patch) | |
tree | b67167b2075bebf97fa819f4569cdb657432b39e /src/couchdb | |
parent | d3696668cfa93a69e55ff8717b7990f49e740b06 (diff) |
Fix for spurious 'server restarted' during replication
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@743801 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb')
-rw-r--r-- | src/couchdb/couch_rep.erl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/couchdb/couch_rep.erl b/src/couchdb/couch_rep.erl index ff926584..0e7c1012 100644 --- a/src/couchdb/couch_rep.erl +++ b/src/couchdb/couch_rep.erl @@ -71,8 +71,11 @@ replicate2(Source, DbSrc, Target, DbTgt, Options) -> ReplicationStartTime = httpd_util:rfc1123_date(), - {ok, SrcInstanceStartTime} = get_db_info(DbSrc), - {ok, TgtInstanceStartTime} = get_db_info(DbTgt), + {ok, InfoSrc} = get_db_info(DbSrc), + {ok, InfoTgt} = get_db_info(DbTgt), + + SrcInstanceStartTime = proplists:get_value(instance_start_time, InfoSrc), + TgtInstanceStartTime = proplists:get_value(instance_start_time, InfoTgt), case proplists:get_value(full, Options, false) orelse proplists:get_value("full", Options, false) of |