Github user eiri commented on a diff in the pull request:
https://github.com/apache/couchdb-couch-mrview/pull/47#discussion_r66324338
--- Diff: src/couch_mrview_http.erl ---
@@ -576,6 +576,9 @@ check_view_etag(Sig, Acc0, Req) ->
parse_json(V) when is_list(V) ->
- ?JSON_DECODE(V);
+ case lists:all(fun is_binary/1, V) of
--- End diff --
the original cloudant multi-query solved it by cut'n'pasting
couch_mrview_http:parse_params into chttpd_view.erl and removing json decode
from the keys in question. to me it looks like more of a hack, but do you
believe this is better approach?
---
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.
---