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 8d9e701 Removing spaces when creating the container name
8d9e701 is described below
commit 8d9e701ed3b7eec0bc42b8c5ba7a82cd5e554511
Author: Dimuthu Wannipurage <[email protected]>
AuthorDate: Wed Jul 24 12:27:45 2019 -0400
Removing spaces when creating the container name
---
.../org/apache/airavata/helix/impl/task/parsing/DataParsingTask.java | 3 ++-
1 file changed, 2 insertions(+), 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 e44b57c..a9f30eb 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,8 @@ public class DataParsingTask extends AbstractTask {
try {
Parser parser = getRegistryServiceClient().getParser(parserId,
gatewayId);
- String containerId = getTaskId() + "_PARSER_"+
parser.getId().replace(" ", "-");
+ String containerId = getTaskId() + "_PARSER_"+ parser.getId();
+ containerId = containerId.replace(" ", "-");
String localInputDir = createLocalInputDir(containerId);
String localOutDir= createLocalOutputDir(containerId);