You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by ea...@apache.org on 2020/08/04 02:23:41 UTC

[incubator-sdap-ingester] branch fix_syntax_error updated: syntax error

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

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


The following commit(s) were added to refs/heads/fix_syntax_error by this push:
     new af8d058  syntax error
af8d058 is described below

commit af8d058431d6c5eb5b6741560597367024686394
Author: Eamon Ford <ea...@jpl.nasa.gov>
AuthorDate: Mon Aug 3 19:23:28 2020 -0700

    syntax error
---
 .../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")