diff options
author | elijah <elijah@riseup.net> | 2016-04-08 10:41:54 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-04-08 10:41:54 -0700 |
commit | 82b15a8a071ba099cf52bb00c66caebdbd265273 (patch) | |
tree | 3f27b0673839be7d10ed5b401216ab79e43ce751 /provider_base/services/soledad.rb | |
parent | 44666c42ce836fb611dfd9c1b549e955c470814c (diff) | |
parent | eac3056c237d523f4786593922fe8f88eb65dff7 (diff) |
Merge branch 'feature/mxtest' into develop
Diffstat (limited to 'provider_base/services/soledad.rb')
-rw-r--r-- | provider_base/services/soledad.rb | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/provider_base/services/soledad.rb b/provider_base/services/soledad.rb index b55e90b6..4391dead 100644 --- a/provider_base/services/soledad.rb +++ b/provider_base/services/soledad.rb @@ -1,3 +1,23 @@ unless self.services.include? "couchdb" LeapCli.log :error, "service `soledad` requires service `couchdb` on the same node (node #{self.name})." -end
\ No newline at end of file +end + +# +# currently, mx tests keep the same test user around, +# by rely on the soledad test to destroy the email +# test user's mail storage (so that it does not just +# keep accumulating test emails). +# +# We do it this way because: +# +# (1) couchdb bloats if you create and destroy test users, +# so we keep the test user around. +# +# (2) the mx test has access to the bonafide api, but the +# bonafide api (webapp) does not have access to destroy +# user storage dbs. +# +# If any of these conditions change, then this partial +# will no longer be required. +# +apply_partial('services/_api_tester.json')
\ No newline at end of file |