From 9f738cd58d98f60221ddab315d6c0e5f1cafd0ab Mon Sep 17 00:00:00 2001 From: Rodolphe Marques Date: Thu, 22 Dec 2016 14:18:31 +0100 Subject: [PATCH] re-enable changefeed for mongodb --- bigchaindb/backend/mongodb/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigchaindb/backend/mongodb/__init__.py b/bigchaindb/backend/mongodb/__init__.py index b43a9c24..af5293ac 100644 --- a/bigchaindb/backend/mongodb/__init__.py +++ b/bigchaindb/backend/mongodb/__init__.py @@ -16,7 +16,7 @@ generic backend interfaces to the implementations in this module. """ # Register the single dispatched modules on import. -from bigchaindb.backend.mongodb import schema, query # noqa no changefeed for now +from bigchaindb.backend.mongodb import schema, query, changefeed # noqa # MongoDBConnection should always be accessed via # ``bigchaindb.backend.connect()``.