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

dimuthuupe pushed a commit to branch staging
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/staging by this push:
     new 3b6e124  Removing spaces when creating the container name
3b6e124 is described below

commit 3b6e124aa9170db923b52f63926770db22bbe881
Author: Dimuthu Wannipurage <[email protected]>
AuthorDate: Wed Jul 24 12:17:30 2019 -0400

    Removing spaces when creating the container name
---
 .../org/apache/airavata/helix/impl/task/parsing/DataParsingTask.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/airavata-helix/helix-spectator/src/main/java/org/apache/airavata/helix/impl/task/parsing/DataParsingTask.java
 
b/modules/airavata-helix/helix-spectator/src/main/java/org/apache/airavata/helix/impl/task/parsing/DataParsingTask.java
index 256ae82..e44b57c 100644
--- 
a/modules/airavata-helix/helix-spectator/src/main/java/org/apache/airavata/helix/impl/task/parsing/DataParsingTask.java
+++ 
b/modules/airavata-helix/helix-spectator/src/main/java/org/apache/airavata/helix/impl/task/parsing/DataParsingTask.java
@@ -111,7 +111,7 @@ public class DataParsingTask extends AbstractTask {
         try {
 
             Parser parser = getRegistryServiceClient().getParser(parserId, 
gatewayId);
-            String containerId = getTaskId() + "_PARSER_"+ parser.getId();
+            String containerId = getTaskId() + "_PARSER_"+ 
parser.getId().replace(" ", "-");
 
             String localInputDir = createLocalInputDir(containerId);
             String localOutDir= createLocalOutputDir(containerId);

Reply via email to