summaryrefslogtreecommitdiff
path: root/lib/tapicero/user_database.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2014-01-11 19:26:36 +0100
committerAzul <azul@riseup.net>2014-01-11 19:26:36 +0100
commita4fa58013a97344a4af431c64b471211b020bea0 (patch)
tree127fe60ba34d6ae691c222e070f09e1802f88119 /lib/tapicero/user_database.rb
parent638e6a83a923e61d8b320818a39befd62529ae1a (diff)
Revisions sometimes start at 2 - work around this
This is an intermediate fix. There's a user record that never had it's database created. The first time it shows up in the changes feed the revision starts with 2-. Not sure why this is. But we loose this user record if we rely on CouchRest::Changes.created which checks for a revision starting with 1-.
Diffstat (limited to 'lib/tapicero/user_database.rb')
-rw-r--r--lib/tapicero/user_database.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/tapicero/user_database.rb b/lib/tapicero/user_database.rb
index 5266b4a..cf43d98 100644
--- a/lib/tapicero/user_database.rb
+++ b/lib/tapicero/user_database.rb
@@ -9,6 +9,13 @@ module Tapicero
@name = name
end
+ def prepare(config)
+ db.create
+ db.secure(config.options[:security])
+ db.add_design_docs
+ logger.info "Prepared storage " + name
+ end
+
def create
retry_request_once "Creating database" do
create_db