From 42e9bbdabbd66f5ac112611cd89c07ee8e42a02c Mon Sep 17 00:00:00 2001 From: Massimiliano Assante Date: Thu, 22 Sep 2016 09:03:49 +0000 Subject: [PATCH] fixed scope set for infrastructure (was missing the starting "/") git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/social-networking-library@131609 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../java/org/gcube/portal/databook/server/RunningCluster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/gcube/portal/databook/server/RunningCluster.java b/src/main/java/org/gcube/portal/databook/server/RunningCluster.java index 232db77..c1b843a 100644 --- a/src/main/java/org/gcube/portal/databook/server/RunningCluster.java +++ b/src/main/java/org/gcube/portal/databook/server/RunningCluster.java @@ -108,7 +108,7 @@ public class RunningCluster implements Serializable { if(infrastructureName != null && !infrastructureName.isEmpty()) scope += infrastructureName; else { - scope = context.getInfrastructureName(); + scope += context.getInfrastructureName(); _log.debug("infrastrucute name is null, setting root scope=" + scope); } String currScope = ScopeProvider.instance.get();