You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before starting to work on something, please comment in JIRA or ask on the mailing list
8
6
to make sure nobody else is working on it.
@@ -13,44 +11,41 @@ get merged in 2.1.
13
11
Before you send your pull request, make sure that:
14
12
15
13
- you have a unit test that failed before the fix and succeeds after.
16
-
- the fix is mentioned in ``driver-core/CHANGELOG.rst``.
14
+
- the fix is mentioned in `driver-core/CHANGELOG.rst`.
17
15
- the commit message include the reference of the JIRA ticket for automatic linking
18
-
(example: ``Fix NPE when a connection fails during pool construction (JAVA-503).``).
16
+
(example: `Fix NPE when a connection fails during pool construction (JAVA-503).`).
19
17
20
18
As long as your pull request is not merged, it's OK to rebase your branch and push with
21
-
``--force``.
19
+
`--force`.
22
20
23
-
If you want to contribute but don't have a specific issue in mind, the `lhf<https://datastax-oss.atlassian.net/secure/IssueNavigator.jspa?reset=true&mode=hide&jqlQuery=project%20%3D%20JAVA%20AND%20status%20in%20(Open%2C%20Reopened)%20AND%20labels%20%3D%20lhf>`_
21
+
If you want to contribute but don't have a specific issue in mind, the [lhf](https://datastax-oss.atlassian.net/secure/IssueNavigator.jspa?reset=true&mode=hide&jqlQuery=project%20%3D%20JAVA%20AND%20status%20in%20(Open%2C%20Reopened)%20AND%20labels%20%3D%20lhf)
24
22
label in JIRA is a good place to start: it marks "low hanging fruits" that don't require
25
23
in-depth knowledge of the codebase.
26
24
27
-
Editor configuration
28
-
--------------------
25
+
## Editor configuration
29
26
30
-
General
31
-
~~~~~~~
27
+
### General
32
28
33
29
We consider automatic formatting as a help, not a crutch. Sometimes it makes sense to
34
30
break the rules to make the code more readable, for instance aligning columns (see the
35
-
constant declarations in ``DataType.Name`` for an example of this).
31
+
constant declarations in `DataType.Name` for an example of this).
36
32
37
33
**Please do not reformat whole files, only the lines that you have added or modified**.
@@ -106,11 +106,8 @@ an [UnsupportedFeatureException](https://github.com/datastax/java-driver/blob/2.
106
106
107
107
## Upgrading from previous versions
108
108
109
-
If you are upgrading from the 2.0.x branch of the driver, be sure to have a look at
110
-
the [upgrade guide](https://github.com/datastax/java-driver/blob/2.1/driver-core/Upgrade_guide_to_2.1.rst).
111
-
112
-
If you are upgrading from the 1.x branch, follow the [upgrade guide to 2.0](https://github.com/datastax/java-driver/blob/2.0/driver-core/Upgrade_guide_to_2.0.rst),
113
-
and then the above document.
109
+
If you are upgrading from a previous version of the driver, be sure to have a look at
0 commit comments