Skip to content

Commit 812e32f

Browse files
committed
Merge branch 'DanAtkinson-patch-1'
(cherry picked from commit 7c92432)
1 parent 75f0d7b commit 812e32f

File tree

2 files changed

+5
-25
lines changed

2 files changed

+5
-25
lines changed

docs/client-concepts/connection/configuration-options.asciidoc

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,6 @@ the low level and high level client:
3030

3131
Api Key to send with all requests to Elasticsearch
3232

33-
`ApiKeyAuthentication`::
34-
35-
Api Key to send with all requests to Elasticsearch
36-
37-
`ApiKeyAuthentication`::
38-
39-
Api Key to send with all requests to Elasticsearch
40-
41-
`BasicAuthentication`::
42-
43-
Basic Authentication credentials to send with all requests to Elasticsearch
44-
4533
`BasicAuthentication`::
4634

4735
Basic Authentication credentials to send with all requests to Elasticsearch
@@ -50,10 +38,6 @@ Basic Authentication credentials to send with all requests to Elasticsearch
5038

5139
Use a `X509Certificate` to authenticate all HTTP requests. You can also set them on individual request using `ClientCertificates`
5240

53-
`ClientCertificate`::
54-
55-
Use a file path to a certificate to authenticate all HTTP requests. You can also set them on individual request using `ClientCertificates`
56-
5741
`ClientCertificates`::
5842

5943
Use the following certificates to authenticate all HTTP requests. You can also set them on individual request using `ClientCertificates`
@@ -158,10 +142,6 @@ Forces all requests to have ?pretty=true querystring parameter appended, causing
158142

159143
If your connection has to go through proxy, use this method to specify the proxy url
160144

161-
`Proxy`::
162-
163-
If your connection has to go through proxy, use this method to specify the proxy url
164-
165145
`RequestTimeout`::
166146

167147
Sets the default timeout in milliseconds for each request to Elasticsearch. Defaults to `60` seconds.
@@ -244,10 +224,6 @@ The default index to use for a request when no index has been explicitly specifi
244224

245225
Specify how the mapping is inferred for a given CLR type. The mapping can infer the index, id and relation name for a given CLR type, as well as control serialization behaviour for CLR properties.
246226

247-
`DefaultMappingFor`::
248-
249-
Specify how the mapping is inferred for a given CLR type. The mapping can infer the index and relation name for a given CLR type.
250-
251227
:xml-docs: Nest:ConnectionSettingsBase`1
252228

253229
==== ConnectionSettings with ElasticClient

src/DocGenerator/AsciiDoc/GeneratedAsciidocVisitor.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,11 @@ string XmlFile(string project)
310310
if (visitor.LabeledListItems.Any())
311311
{
312312
var labeledList = new LabeledList();
313-
foreach (var item in visitor.LabeledListItems.OrderBy(l => l.Label)) labeledList.Items.Add(item);
313+
foreach (var item in visitor.LabeledListItems
314+
.OrderBy(l => l.Label)
315+
.GroupBy(l => l.Label)
316+
.Select(x => x.First()))
317+
labeledList.Items.Add(item);
314318

315319
_newDocument.Insert(_newDocument.IndexOf(attributeEntry), labeledList);
316320
}

0 commit comments

Comments
 (0)