This is an automated email from the ASF dual-hosted git repository.

vitalii pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/drill.git


The following commit(s) were added to refs/heads/gh-pages by this push:
     new 27dbfa1  Fix formatting on "MongoDB Storage Plugin" page (#2145)
27dbfa1 is described below

commit 27dbfa18951467de7818edd7c2cc8acc8a77c077
Author: Vitalii Diravka <[email protected]>
AuthorDate: Thu Jan 21 00:48:36 2021 +0200

    Fix formatting on "MongoDB Storage Plugin" page (#2145)
    
    * Fix formatting on `MongoDB Storage Plugin` page
    
    * Added link to "Connection String URI Format"
---
 .../connect-a-data-source/plugins/090-mongodb-storage-plugin.md  | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/_docs/connect-a-data-source/plugins/090-mongodb-storage-plugin.md 
b/_docs/connect-a-data-source/plugins/090-mongodb-storage-plugin.md
index 8f41b86..1cc9f87 100644
--- a/_docs/connect-a-data-source/plugins/090-mongodb-storage-plugin.md
+++ b/_docs/connect-a-data-source/plugins/090-mongodb-storage-plugin.md
@@ -33,15 +33,18 @@ Drill must be running in order to access the Web UI to 
configure a storage plugi
   2. In the [Drill Web UI]({{ site.baseurl 
}}/docs/plugin-configuration-basics/#using-the-drill-web-console), select the 
**Storage** tab.
   4. Under Disabled Storage Plugins, select **Update** to choose the `mongo` 
storage plugin configuration.
   5. In the Configuration window, take a look at the default configuration:
-     
+  ```json
         {
           "type": "mongo",
           "connection": "mongodb://localhost:27017/",
           "enabled": false
         }
+  ```
+
+{% include startnote.html %}27017 is the default port for `mongodb` 
instances.{% include endnote.html %}
+{% include startnote.html %}In some cases you will need an authentication to 
perform certain `mongodb` queries. You can add login and password directly to 
connection URL: 'mongodb://root:password@localhost:27017/'.{% include 
endnote.html %}
+{% include startnote.html %}See more info [Connection String URI 
Format]({{site.baseurl}}https://docs.mongodb.com/v3.0/reference/connection-string/){%
 include endnote.html %} 
 
-     {% include startnote.html %}27017 is the default port for `mongodb` 
instances.{% include endnote.html %} 
-     {% include startnote.html %}In some cases you will need an authentication 
to perform certain `mongodb` queries. You can add login and password directly 
to connection URL: 'mongodb://root:password@localhost:27017/'{% include 
endnote.html %} 
   6. Click **Enable** to enable the storage plugin.
 
 ## Querying MongoDB

Reply via email to