summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAdam Kocoloski <adam@cloudant.com>2010-09-03 12:45:34 -0400
committerAdam Kocoloski <adam@cloudant.com>2010-09-03 12:48:41 -0400
commit7e86edffb496cdd4f384266f671ca21074f2eca6 (patch)
treeee72f6019b4a298115d38031b31d8571a57feafa /apps
parentbcd9ed8f2397a5c238b0640aab3ceb9841d96794 (diff)
s/Cloudant/BigCouch
Diffstat (limited to 'apps')
-rw-r--r--apps/chttpd/src/chttpd_db.erl2
-rw-r--r--apps/chttpd/src/chttpd_view.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/chttpd/src/chttpd_db.erl b/apps/chttpd/src/chttpd_db.erl
index 18bd6f44..29571c9f 100644
--- a/apps/chttpd/src/chttpd_db.erl
+++ b/apps/chttpd/src/chttpd_db.erl
@@ -115,7 +115,7 @@ is_old_couch(Resp) ->
end.
handle_compact_req(Req, _) ->
- Msg = <<"Compaction is handled automatically by Cloudant">>,
+ Msg = <<"Compaction must be triggered on a per-shard basis in BigCouch">>,
couch_httpd:send_error(Req, 403, forbidden, Msg).
handle_view_cleanup_req(Req, Db) ->
diff --git a/apps/chttpd/src/chttpd_view.erl b/apps/chttpd/src/chttpd_view.erl
index 6419e807..89f91cb2 100644
--- a/apps/chttpd/src/chttpd_view.erl
+++ b/apps/chttpd/src/chttpd_view.erl
@@ -93,7 +93,7 @@ handle_view_req(Req, _Db, _DDoc) ->
send_method_not_allowed(Req, "GET,POST,HEAD").
handle_temp_view_req(Req, _Db) ->
- Msg = <<"Temporary views are not supported by Cloudant">>,
+ Msg = <<"Temporary views are not supported in BigCouch">>,
chttpd:send_error(Req, 403, forbidden, Msg).
reverse_key_default(?MIN_STR) -> ?MAX_STR;