Skip to content

Commit c106596

Browse files
author
Sam Kleinman
committed
minor: fixing build errors
1 parent 015899c commit c106596

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

bin/mongodb_domain.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,11 @@ def add_target_and_index(self, name_obj, sig, signode):
116116
pass
117117
elif fullname.startswith(spath):
118118
pass
119+
elif fullname == '$':
120+
pass
121+
# temporary: silencing the positional operator
122+
# warning, this is the namespace clash for
123+
# projection and query/update operators.
119124
else:
120125
self.state_machine.reporter.warning(
121126
'duplicate object description of "%s", ' % fullname +

source/core/sharded-clusters.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To run sharding, you set up a sharded cluster. For a description of
2828
sharded clusters, see :doc:`/administration/sharded-clusters`.
2929

3030
Within a sharded cluster, you enable sharding on a per-database basis.
31-
Once a database is enabled for sharding, you choose which collections to
31+
After enabling sharding for a database, you choose which collections to
3232
shard. For each sharded collection, you specify a :term:`shard key`.
3333

3434
The shard key determines the distribution of the collection's
@@ -111,8 +111,8 @@ You may disable the balancer on a temporary basis for
111111
maintenance and limit the window during which it runs to prevent the
112112
balancing process from impacting production traffic.
113113

114-
.. seealso:: :ref:`sharding-balancing-operations` and
115-
:ref:`sharding-balancing-internals`.
114+
.. seealso:: :doc:`/tutorial/manage-sharded-cluster-balancer` and
115+
:doc:`/core/sharded-cluster-internals`.
116116

117117
.. note::
118118

0 commit comments

Comments
 (0)