-
Notifications
You must be signed in to change notification settings - Fork 20
DOCSP-42303 Update username and password placeholders #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOCSP-42303 Update username and password placeholders #100
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just pointed a few placeholders you may have missed.
source/connect.txt
Outdated
timeoutMS=<timeout length>) | ||
|
||
.. tab:: Connection String | ||
:tabid: connectionstring | ||
|
||
.. code-block:: python | ||
|
||
uri = "mongodb://<username>:<password>@<hostname:<port>/?timeoutMS=<timeout length>" | ||
uri = "mongodb://<db_username>:<password>@<hostname:<port>/?timeoutMS=<timeout length>" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uri = "mongodb://<db_username>:<password>@<hostname:<port>/?timeoutMS=<timeout length>" | |
uri = "mongodb://<db_username>:<db_password>@<hostname:<port>/?timeoutMS=<timeout length>" |
@@ -14,7 +14,7 @@ | |||
|
|||
.. code-block:: python | |||
|
|||
uri = ("mongodb://<username>:<password>@<hostname:<port>/?" | |||
uri = ("mongodb://<db_username>:<password>@<hostname:<port>/?" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uri = ("mongodb://<db_username>:<password>@<hostname:<port>/?" | |
uri = ("mongodb://<db_username>:<db_password>@<hostname:<port>/?" |
@@ -5,14 +5,14 @@ | |||
|
|||
.. code-block:: python | |||
|
|||
client = pymongo.MongoClient("mongodb://<username>:<password>@<hostname>:<port>", | |||
client = pymongo.MongoClient("mongodb://<db_username>:<password>@<hostname>:<port>", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
client = pymongo.MongoClient("mongodb://<db_username>:<password>@<hostname>:<port>", | |
client = pymongo.MongoClient("mongodb://<db_username>:<db_password>@<hostname>:<port>", |
compressors = "snappy,zstd,zlib") | ||
|
||
.. tab:: Connection String | ||
:tabid: connectionstring | ||
|
||
.. code-block:: python | ||
|
||
uri = ("mongodb://<username>:<password>@<hostname>:<port>/?" | ||
uri = ("mongodb://<db_username>:<password>@<hostname>:<port>/?" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uri = ("mongodb://<db_username>:<password>@<hostname>:<port>/?" | |
uri = ("mongodb://<db_username>:<db_password>@<hostname>:<port>/?" |
@@ -14,7 +14,7 @@ | |||
|
|||
.. code-block:: python | |||
|
|||
uri = ("mongodb://<username>:<password>@<hostname>:<port>/?" | |||
uri = ("mongodb://<db_username>:<password>@<hostname>:<port>/?" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uri = ("mongodb://<db_username>:<password>@<hostname>:<port>/?" | |
uri = ("mongodb://<db_username>:<db_password>@<hostname>:<port>/?" |
(cherry picked from commit 952b1f9)
(cherry picked from commit 952b1f9)
Pull Request Info
PR Reviewing Guidelines
JIRA - https://jira.mongodb.org/browse/DOCSP-42384
Staging - https://preview-mongodbjordansmith721.gatsbyjs.io/pymongo/DOCSP-42303-update-placeholders/
Self-Review Checklist