forked from mongodb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOCSP-11895 correct mongoreplay build errors
- Loading branch information
1 parent
28359d6
commit 0226d3f
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1227,11 +1227,11 @@ MongoDB Tools | |
:toolcommand:`mongoreplay play <play>` supports a new ``MONGOREPLAY_HOST`` | ||
environment variable that specifies the MongoDB connection string when | ||
running ``mongoreplay play``. The new environment vairable can be used | ||
instead of the command-line ``--host`` | ||
option. | ||
instead of the command-line ``--host`` option. | ||
|
||
For example, to play back a recording to a :binary:`~bin.mongod` | ||
instance running with authentication ``mongodb1.example.net:27017``, you can specify the connection string in: | ||
instance running with authentication at ``mongodb1.example.net:27017``, | ||
you can specify the connection string in: | ||
|
||
- The ``MONGOREPLAY_HOST`` environment variable: | ||
|
||
|
@@ -1240,7 +1240,7 @@ instance running with authentication ``mongodb1.example.net:27017``, you can spe | |
export MONGOREPLAY_HOST="mongodb://myUserName:[email protected]:27017/?authSource=admin" | ||
mongoreplay play -p /some/path/to/my/recording.bson | ||
|
||
- The :option:``--host`` command-line option | ||
- The ``--host`` command-line option: | ||
|
||
.. code-block:: sh | ||
|
||
|