Skip to content

Commit

Permalink
adding alias to 'links' while generating new docker-compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
gtejasvarma committed May 25, 2016
1 parent 1c11d9c commit 92c87df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private Map<String,Object> updateContainerValue(String executorId,String taskId,
@SuppressWarnings("unchecked")
List<String> links = (ArrayList<String>)linkValues;
for(String link:links){
updatedLinks.add(prefixTaskId(taskId, link));
updatedLinks.add(prefixTaskId(taskId, link)+":"+link);
System.out.println(prefixTaskId(taskId, link));
}
containerDetails.put(LINKS, updatedLinks);
Expand Down

0 comments on commit 92c87df

Please sign in to comment.