Skip to content

Commit d1f9ec6

Browse files
committed
edits
1 parent 385cce1 commit d1f9ec6

File tree

4 files changed

+10
-20
lines changed

4 files changed

+10
-20
lines changed

source/get-started.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Get Started with the {+driver-short+}
2222

2323
Download & Install </get-started/download-and-install/>
2424
Create a Deployment </get-started/create-deployment/>
25-
Create a Connection String </get-started/create-a-connection-string/>
25+
Create a Connection String </get-started/connection-string/>
2626
Connect to MongoDB </get-started/connect-to-mongodb/>
2727
Next Steps </get-started/next-steps/>
2828

source/get-started/connect-to-mongodb.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ the Atlas sample datasets.
3232

3333
.. step:: Assign the connection string
3434

35-
Replace the ``<connection string>`` placeholder with the connection string
35+
Replace the ``<connection string uri>`` placeholder with the connection string
3636
that you copied from the :ref:`java-get-started-connection-string` step of this
3737
guide.
3838

@@ -43,9 +43,6 @@ the Atlas sample datasets.
4343

4444
.. include:: /includes/get-started/query-output.rst
4545

46-
If you encounter an error or see no output, ensure that you specified the
47-
correct connection string and that you loaded the sample data.
48-
4946
.. include:: /includes/get-started/jdk-tls-issue.rst
5047

5148
After you complete these steps, you have a Java application that
Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
1-
.. important:: Known connection issue when using TLS v1.3
1+
.. important:: TLS v1.3 Connection Error
22

3-
If you encounter an error connecting to your MongoDB instance or cluster
4-
that resembles the following while running your application, you might need
5-
to update your JDK to the latest patch release:
3+
If your application generates an error that resembles the following
4+
code, you might need to update your JDK to the latest patch release:
65

76
.. code-block:: none
87
:copyable: false
98
109
javax.net.ssl.SSLHandshakeException: extension (5) should not be presented in certificate_request
1110
1211
This exception is a known issue when using the TLS 1.3 protocol with
13-
specific versions of JDK, but was fixed for the following releases:
12+
some JDK versions. To resolve the error, update your JDK to one of
13+
the following versions, or a newer version:
1414

1515
- JDK 11.0.7
1616
- JDK 13.0.3
17-
- JDK 14.0.2
18-
19-
To resolve this error, update your JDK to one of the preceding patch
20-
versions or a newer one.
17+
- JDK 14.0.2
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
When you run the ``QuickStart`` class, it should output the details of the
2-
movie from the sample dataset, which will resemble the following:
3-
41
.. code-block:: json
52
:copyable: false
63
@@ -13,6 +10,5 @@ movie from the sample dataset, which will resemble the following:
1310
...
1411
}
1512
16-
If you receive no output or an error, check whether you included the proper
17-
connection string in your Java class, and whether you loaded the sample dataset
18-
into your MongoDB Atlas cluster.
13+
If you encounter an error or see no output, ensure that you specified the
14+
correct connection string and that you loaded the sample data.

0 commit comments

Comments
 (0)