You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/12/02 08:27:39 UTC

[incubator-streampipes] branch dev updated: [hotfix] minor renaming of config option

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

wiener pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new b8f46b6  [hotfix] minor renaming of config option
b8f46b6 is described below

commit b8f46b69e22e2ac2f1c5091b3d6dcb0ccd395f00
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Wed Dec 2 09:27:26 2020 +0100

    [hotfix] minor renaming of config option
---
 .../java/org/apache/streampipes/storage/rdf4j/config/ConfigKeys.java  | 2 +-
 .../java/org/apache/streampipes/storage/rdf4j/config/Rdf4JConfig.java | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/streampipes-storage-rdf4j/src/main/java/org/apache/streampipes/storage/rdf4j/config/ConfigKeys.java b/streampipes-storage-rdf4j/src/main/java/org/apache/streampipes/storage/rdf4j/config/ConfigKeys.java
index 8011846..f5f86e6 100644
--- a/streampipes-storage-rdf4j/src/main/java/org/apache/streampipes/storage/rdf4j/config/ConfigKeys.java
+++ b/streampipes-storage-rdf4j/src/main/java/org/apache/streampipes/storage/rdf4j/config/ConfigKeys.java
@@ -19,5 +19,5 @@ package org.apache.streampipes.storage.rdf4j.config;
 
 public class ConfigKeys {
     public static final String BACKGROUND_KNOWLEDGE_DIR = "SP_BACKGROUND_KNOWLEDGE_DIR";
-    public static final String PE_KNOWLEDGE_DIR = "SP_PE_DESCRIPTION_DIR";
+    public static final String PIPELINE_ELEMENT_KNOWLEDGE_DIR = "SP_PIPELINE_ELEMENT_KNOWLEDGE_DIR";
 }
diff --git a/streampipes-storage-rdf4j/src/main/java/org/apache/streampipes/storage/rdf4j/config/Rdf4JConfig.java b/streampipes-storage-rdf4j/src/main/java/org/apache/streampipes/storage/rdf4j/config/Rdf4JConfig.java
index 4076e83..abc53af 100644
--- a/streampipes-storage-rdf4j/src/main/java/org/apache/streampipes/storage/rdf4j/config/Rdf4JConfig.java
+++ b/streampipes-storage-rdf4j/src/main/java/org/apache/streampipes/storage/rdf4j/config/Rdf4JConfig.java
@@ -33,7 +33,7 @@ public enum Rdf4JConfig {
 
     config.register(ConfigKeys.BACKGROUND_KNOWLEDGE_DIR, makeBackgroundStorageLocation(), "Directory of " +
             "the RDF4J native store directory (background knowledge)");
-    config.register(ConfigKeys.PE_KNOWLEDGE_DIR, makePipelineElementStorageLocation(), "Directory of " +
+    config.register(ConfigKeys.PIPELINE_ELEMENT_KNOWLEDGE_DIR, makePipelineElementStorageLocation(), "Directory of " +
             "the RDF4J native store directory (pipeline element knowledge)");
   }
 
@@ -61,7 +61,7 @@ public enum Rdf4JConfig {
   }
 
   public String getPipelineElementStorageLocation() {
-      return config.getString(ConfigKeys.PE_KNOWLEDGE_DIR);
+      return config.getString(ConfigKeys.PIPELINE_ELEMENT_KNOWLEDGE_DIR);
   }