Skip to content

change image width size in metadata and fix rs.add #1001

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions source/images/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 700
---
name: replica-set-primary-with-secondary-and-arbiter
alt: "Diagram of 3-member replica set architecture with an arbiter."
Expand All @@ -20,7 +20,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 700
---
name: replica-set-read-write-operations-primary
alt: "Diagram of default routing of read and write operations to the primary."
Expand All @@ -32,7 +32,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 500
---
name: replica-set-trigger-election
alt: "Diagram of election of new primary."
Expand All @@ -44,7 +44,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 500
---
name: replica-set-four-members-add-arbiter
alt: "Diagram of four member replica set plus an arbiter for odd number of votes."
Expand All @@ -56,7 +56,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 700
---
name: replica-set-only-seven-voting-members
alt: "Diagram of 9 member replica set with the maximum of 7 voting members."
Expand All @@ -68,7 +68,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 700
---
name: replica-set-three-members-geographically-distributed
alt: "Diagram of 3 member replica set distributed across two datacenters. Replica set includes a secondary-only member."
Expand All @@ -80,7 +80,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 700
---
name: replica-set-three-data-centers
alt: "Diagram of 5 member replica set distributed across three datacenters. Replica set includes a secondary-only member."
Expand All @@ -92,7 +92,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 700
---
name: replica-set-hidden-member
alt: "Diagram of 5 member replica set with a hidden secondary-only member."
Expand All @@ -104,7 +104,7 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 700
---
name: replica-set-delayed-member
alt: "Diagram of 5 member replica set with a hidden delayed secondary-only member."
Expand All @@ -116,5 +116,5 @@ output:
- type: web
tag: ''
dpi: 72
width: 350
width: 700
...
2 changes: 1 addition & 1 deletion source/reference/method/rs.add.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ following form of :method:`rs.add()`:

.. code-block:: javascript

rs.add( { "_id": "3", "host": "mongodbd3.example.net:27017", "priority": 0 } )
rs.add( { "_id": 3, "host": "mongodbd3.example.net:27017", "priority": 0 } )

Replace, ``3`` with the next unused ``_id`` value in the replica
set. See :method:`rs.conf()` to see the existing ``_id`` values
Expand Down