You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ep...@apache.org on 2020/07/06 10:37:00 UTC

[lucene-solr] branch branch_8x updated: update the name of the deletegation method in docs to be correct method name (#1652)

This is an automated email from the ASF dual-hosted git repository.

epugh pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 9a9ffac  update the name of the deletegation method in docs to be correct method name (#1652)
9a9ffac is described below

commit 9a9ffaccfed60721417e0365bf88317f65e5e78d
Author: Eric Pugh <ep...@opensourceconnections.com>
AuthorDate: Mon Jul 6 06:35:36 2020 -0400

    update the name of the deletegation method in docs to be correct method name (#1652)
---
 solr/solr-ref-guide/src/kerberos-authentication-plugin.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/src/kerberos-authentication-plugin.adoc b/solr/solr-ref-guide/src/kerberos-authentication-plugin.adoc
index 90682be..d3a7c67 100644
--- a/solr/solr-ref-guide/src/kerberos-authentication-plugin.adoc
+++ b/solr/solr-ref-guide/src/kerberos-authentication-plugin.adoc
@@ -342,7 +342,7 @@ SolrJClient {
 Delegation tokens are also supported with SolrJ, in the following ways:
 
 * `DelegationTokenRequest` and `DelegationTokenResponse` can be used to get, cancel, and renew delegation tokens.
-* `HttpSolrClient.Builder` includes a `withDelegationToken` function for creating an HttpSolrClient that uses a delegation token to authenticate.
+* `HttpSolrClient.Builder` includes a `withKerberosDelegationToken` function for creating an HttpSolrClient that uses a delegation token to authenticate.
 
 Sample code to get a delegation token:
 
@@ -366,7 +366,7 @@ To create a `HttpSolrClient` that uses delegation tokens:
 
 [source,java]
 ----
-HttpSolrClient client = new HttpSolrClient.Builder("http://localhost:8983/solr").withDelegationToken(token).build();
+HttpSolrClient client = new HttpSolrClient.Builder("http://localhost:8983/solr").withKerberosDelegationToken(token).build();
 ----
 
 To create a `CloudSolrClient` that uses delegation tokens: