summaryrefslogtreecommitdiff
path: root/lib/tapicero_daemon.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tapicero_daemon.rb')
-rw-r--r--lib/tapicero_daemon.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tapicero_daemon.rb b/lib/tapicero_daemon.rb
index 23248e3..b9f22dc 100644
--- a/lib/tapicero_daemon.rb
+++ b/lib/tapicero_daemon.rb
@@ -12,7 +12,7 @@ module Tapicero
users.created do |hash|
logger.debug "Created user " + hash['id']
- user_database(hash['id']).prepare(config)
+ user_database(hash['id']).prepare
end
# Sometimes changes log starts with rev 2. So the
@@ -21,7 +21,7 @@ module Tapicero
# couchrest changes takes this into account.
users.updated do |hash|
logger.debug "Updated user " + hash['id']
- user_database(hash['id']).prepare(config)
+ user_database(hash['id']).prepare
end
users.deleted do |hash|