GitHub user iilyak opened a pull request:

    https://github.com/apache/couchdb-chttpd/pull/55

    Support endpoint overriding

    There are two kinds of overrides:
    - overriding regular checkpoint
    - overriding default handler (such as chttpd_db:handle_request/1)
    
    Therefore there are two distinct options for overriding.
    
        url_handler(<<"_all_dbs">>) ->
            {override, fun mymodule:handle_all_dbs_req/1};
    
        url_handler(_) ->
            {default, fun mymodule:handle_request/1};

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/cloudant/couchdb-chttpd endpoint-overrides

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/couchdb-chttpd/pull/55.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #55
    
----
commit 4493e4541fe40247ef0bb13611e97bbe1bb157bd
Author: ILYA Khlopotov <[email protected]>
Date:   2015-08-13T15:33:33Z

    Support endpoint overriding
    
    There are two kinds of overrides:
    - overriding regular checkpoint
    - overriding default handler (such as chttpd_db:handle_request/1)
    
    Therefore there are two distinct options for overriding.
    
        url_handler(<<"_all_dbs">>) ->
            {override, fun mymodule:handle_all_dbs_req/1};
    
        url_handler(_) ->
            {default, fun mymodule:handle_request/1};

----


---
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.
---

Reply via email to