You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ep...@apache.org on 2024/02/29 13:58:19 UTC

(solr) branch main updated: Update tutorial-five-minutes.adoc (#2319)

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 8b9d924debe Update tutorial-five-minutes.adoc (#2319)
8b9d924debe is described below

commit 8b9d924debeab4022a88e02b19ce3c42c35b8c5a
Author: Vickie Karasic <10...@users.noreply.github.com>
AuthorDate: Thu Feb 29 08:58:12 2024 -0500

    Update tutorial-five-minutes.adoc (#2319)
    
    fix example data files
---
 .../modules/getting-started/pages/tutorial-five-minutes.adoc            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/modules/getting-started/pages/tutorial-five-minutes.adoc b/solr/solr-ref-guide/modules/getting-started/pages/tutorial-five-minutes.adoc
index bda25d0aaf5..e5311ff44da 100644
--- a/solr/solr-ref-guide/modules/getting-started/pages/tutorial-five-minutes.adoc
+++ b/solr/solr-ref-guide/modules/getting-started/pages/tutorial-five-minutes.adoc
@@ -135,7 +135,7 @@ A file containing the documents can be indexed as follows:
 ----
 $ curl -H "Content-Type: application/json" \
        -X POST \
-       -d @example/products.json \
+       -d @example/exampledocs/books.json \
        --url 'http://localhost:8983/api/collections/techproducts/update?commit=true'
 ----