Skip to content

Commit 413af3c

Browse files
Chris Choschmalliso
authored andcommitted
DOCSP-20363: subdomain consolidation (#237)
1 parent 0f21f39 commit 413af3c

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

snooty.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "kafka-connector"
22
title = "MongoDB Kafka Connector"
3-
intersphinx = ["https://docs.mongodb.com/manual/objects.inv"]
3+
intersphinx = ["https://www.mongodb.com/docs/manual/objects.inv"]
44
toc_landing_pages = ["/introduction", "/tutorials", "/sink-connector", "/source-connector", "/sink-connector/configuration-properties", "/source-connector/configuration-properties", "/sink-connector/fundamentals", "/source-connector/fundamentals", "/source-connector/usage-examples", "/security-and-authentication", "/troubleshooting"]
55

66
[constants]
@@ -20,7 +20,7 @@ connector_kafka_version_minor="6"
2020
connector_kafka_version_docs="https://kafka.apache.org/{+connector_kafka_version_major+}{+connector_kafka_version_minor+}"
2121
sink-connector="MongoDB Kafka sink connector"
2222
source-connector="MongoDB Kafka source connector"
23-
connector_driver_url_base="https://docs.mongodb.com/drivers/java/sync/v{+connector_driver_version+}/"
23+
connector_driver_url_base="https://www.mongodb.com/docs/drivers/java/sync/v{+connector_driver_version+}/"
2424
connector_driver_api_doc_url_base="https://mongodb.github.io/mongo-java-driver/{+connector_driver_version+}/"
2525
pipeline-size = "2.4 GB"
2626
stable-api = "Stable API"

source/includes/steps-cdc-tutorial.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ content: |
7676
:alt: Arrangement of two shells for this tutorial.
7777
7878
Arrange your two terminal windows to match the preceding image so that
79-
both are visible and one is above the other.
79+
both are visible and one is above the other.
8080
8181
To monitor your topic, type the following command in your upper terminal window:
8282
@@ -87,7 +87,7 @@ content: |
8787
.. important:: Broker Leader Not Available
8888
8989
If you receive the following output, run the preceding ``kafkacat`` command
90-
a second time:
90+
a second time:
9191
9292
.. code-block::
9393
:copyable: false
@@ -117,7 +117,7 @@ content: |
117117
.. code-block:: bash
118118
119119
curl -X POST -H "Content-Type: application/json" --data '
120-
{ "name": "mongo-sink-CDCTutorial-eventroundtrip",
120+
{ "name": "mongo-sink-CDCTutorial-eventroundtrip",
121121
"config": {
122122
"connector.class":"com.mongodb.kafka.connect.MongoSinkConnector",
123123
"tasks.max":"1",
@@ -161,8 +161,8 @@ content: |
161161
title: Change Data in MongoDB
162162
ref: cdc-tutorial-change-data
163163
content: |
164-
From your lower terminal, enter the
165-
`MongoDB Shell <https://docs.mongodb.com/mongodb-shell/>`__
164+
From your lower terminal, enter the
165+
`MongoDB Shell <https://www.mongodb.com/docs/mongodb-shell/>`__
166166
with the following command:
167167
168168
.. code-block:: bash
@@ -174,7 +174,7 @@ content: |
174174
.. code-block:: bash
175175
:copyable: false
176176
177-
rs0 [primary] test>
177+
rs0 [primary] test>
178178
179179
.. _cdc-tutorial-change-data-insert:
180180
@@ -188,13 +188,13 @@ content: |
188188
189189
Once you insert the document, you should see output that resembles the following
190190
in your upper shell:
191-
191+
192192
.. code-block:: bash
193193
:copyable: false
194194
195195
{"schema":{"type":"string","optional":false},
196-
"payload":{"_id": {"_data": "8260...4"},
197-
"operationType": "insert",
196+
"payload":{"_id": {"_data": "8260...4"},
197+
"operationType": "insert",
198198
"clusterTime": {"$timestamp": {"t": 1611348141, "i": 2}},
199199
"fullDocument": {"_id": {"$oid": "600b38ad..."}, "proclaim": "Hello World!"},
200200
"ns": {"db": "CDCTutorial", "coll": "Source"},
@@ -216,7 +216,7 @@ content: |
216216
217217
Try deleting your document from your ``Source`` collection with the following
218218
command:
219-
219+
220220
.. code-block:: javascript
221221
222222
db.Source.deleteMany({})

source/issues-and-help.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Issues & Help
55
.. default-domain:: mongodb
66

77
Often, the quickest way to get support for general questions is through the
8-
`MongoDB Community Forums <https://developer.mongodb.com/community/forums/tags/c/connectors-integrations/48/kafka-connector>`__.
8+
`MongoDB Community Forums <https://www.mongodb.com/community/forums/tags/c/connectors-integrations/48/kafka-connector>`__.
99

10-
Refer to our `support channels <http://www.mongodb.org/about/support>`__ documentation for more information.
10+
Refer to our :manual:`support channels </support>` documentation for more information.
1111

1212
Bugs / Feature Requests
1313
-----------------------
@@ -24,7 +24,7 @@ Bug reports in JIRA for the Kafka Connector project are **public**.
2424

2525
If you've identified a security vulnerability in the connector or any other
2626
MongoDB project, please report it according to the instructions found in the
27-
`Create a Vulnerability Report <http://docs.mongodb.org/manual/tutorial/create-a-vulnerability-report>`__.
27+
:manual:`Create a Vulnerability Report </tutorial/create-a-vulnerability-report>`.
2828

2929
Pull Requests
3030
-------------

0 commit comments

Comments
 (0)