You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by tl...@apache.org on 2021/04/09 01:17:28 UTC

[incubator-sdap-ingester] 09/33: Fix syntax error (#9)

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

tloubrieu pushed a commit to branch ascending_latitudes
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-ingester.git

commit 4f7fdf2e61a5c6b89d87122910a35253eb3d14f5
Author: Eamon Ford <ea...@gmail.com>
AuthorDate: Mon Aug 3 19:26:25 2020 -0700

    Fix syntax error (#9)
    
    Co-authored-by: Eamon Ford <ea...@jpl.nasa.gov>
---
 .../collection_manager/services/history_manager/SolrIngestionHistory.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/collection_manager/collection_manager/services/history_manager/SolrIngestionHistory.py b/collection_manager/collection_manager/services/history_manager/SolrIngestionHistory.py
index 319fa3e..79d6eef 100644
--- a/collection_manager/collection_manager/services/history_manager/SolrIngestionHistory.py
+++ b/collection_manager/collection_manager/services/history_manager/SolrIngestionHistory.py
@@ -105,7 +105,7 @@ class SolrIngestionHistory(IngestionHistory):
                 logger.info(f"solr collection created {response}")
 
                 # Update schema
-                schema_endpoint = f"{self._url_prefix/{self._granule_collection_name}/schema"
+                schema_endpoint = f"{self._url_prefix}/{self._granule_collection_name}/schema"
                 self._add_field(schema_endpoint, "dataset_s", "string")
                 self._add_field(schema_endpoint, "granule_s", "string")
                 self._add_field(schema_endpoint, "granule_signature_s", "string")