diff options
-rw-r--r-- | apps/chttpd/src/chttpd_db.erl | 2 | ||||
-rw-r--r-- | apps/chttpd/src/chttpd_view.erl | 2 |
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; |