From 0c5aa32cb7bf101aa51be9c3750644d723825e9a Mon Sep 17 00:00:00 2001 From: Anthony Alberto Date: Thu, 9 Dec 2021 10:37:08 -0500 Subject: [PATCH] Fix tail flag description for mongo --- adaptor/mongodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adaptor/mongodb/README.md b/adaptor/mongodb/README.md index 0c15353f..5138205a 100644 --- a/adaptor/mongodb/README.md +++ b/adaptor/mongodb/README.md @@ -26,7 +26,7 @@ m = mongodb({ | ------------------ | ------------------------------------------------------------ | ------------------------------ | | uri | Defines the full connection string of the MongoDB database. | mongodb://127.0.0.1:27017/test | | timeout | Overrides the default session timeout and should be parseable by time.ParseDuration | 10s | -| tail | Set the flag to tell the Client whether or not access to the oplog will be needed | false | +| tail | Whether the source connection will listen for updates after the initial sync (requires oplog access) | false | | ssl | Configures the database connection to connect via TLS | false | | cacerts | Configures the RootCAs for the underlying TLS connection | [] | | wc | Configures the write concern option for the session | 0 |