Github user rnewson commented on a diff in the pull request:
https://github.com/apache/couchdb-chttpd/pull/82#discussion_r48728304
--- Diff: src/chttpd_db.erl ---
@@ -722,7 +731,14 @@ db_doc_req(#httpd{method='POST', user_ctx=Ctx}=Req,
Db, DocId) ->
NewDoc = Doc#doc{
atts = UpdatedAtts ++ OldAtts2
},
- case fabric:update_doc(Db, NewDoc, Options) of
+ NewNewDoc = case fabric_att_handler:external_store() of
+ true ->
+ fabric_att_handler:att_store(Db, NewDoc);
%store_single_document
+ false ->
+ couch_log:debug("Store inline attachmets in Swift
disabled",[]),
--- End diff --
this mentions Swift when it shouldn't (it might be stored there)
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---