This is an automated email from the ASF dual-hosted git repository.
epugh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new abfe1d8 fix url (#342)
abfe1d8 is described below
commit abfe1d851254fda30088df0cd69a12516ed7c621
Author: Eric Pugh <[email protected]>
AuthorDate: Mon Oct 11 15:32:48 2021 -0400
fix url (#342)
Co-authored-by: [email protected] <>
---
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 682f8aa..308254f 100644
--- a/solr/solr-ref-guide/src/stream-decorator-reference.adoc
+++ b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
@@ -543,28 +543,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.