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 2021/10/11 19:34:36 UTC

[lucene-solr] branch branch_8x updated: backport SOLR-15688

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 abdb806  backport SOLR-15688
abdb806 is described below

commit abdb8062b39793b196f2bf39eb68864518adbcd6
Author: epugh@opensourceconnections.com <>
AuthorDate: Mon Oct 11 15:34:12 2021 -0400

    backport SOLR-15688
---
 solr/solr-ref-guide/src/stream-decorator-reference.adoc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/solr/solr-ref-guide/src/stream-decorator-reference.adoc b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
index 0dd0ef8..0062b17 100644
--- a/solr/solr-ref-guide/src/stream-decorator-reference.adoc
+++ b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
@@ -510,28 +510,28 @@ The `/stream` handler supports a small <<stream-api.adoc#plugins,set of commands
 
 [source,text]
 ----
-http://localhost:8983/collection/stream?action=list
+http://localhost:8983/solr/collection/stream?action=list
 ----
 
 This command will provide a listing of the current daemons running on the specific node along with their current state.
 
 [source,text]
 ----
-http://localhost:8983/collection/stream?action=stop&id=daemonId
+http://localhost:8983/solr/collection/stream?action=stop&id=daemonId
 ----
 
 This command will stop a specific daemon function but leave it resident in memory.
 
 [source,text]
 ----
-http://localhost:8983/collection/stream?action=start&id=daemonId
+http://localhost:8983/solr/collection/stream?action=start&id=daemonId
 ----
 
 This command will start a specific daemon function that has been stopped.
 
 [source,text]
 ----
-http://localhost:8983/collection/stream?action=kill&id=daemonId
+http://localhost:8983/solr/collection/stream?action=kill&id=daemonId
 ----
 
 This command will stop a specific daemon function and remove it from memory.