You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by is...@apache.org on 2023/02/10 03:17:49 UTC

[airavata-custos] branch baremetal updated: custos-services bug fix in group resource manageer

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

isjarana pushed a commit to branch baremetal
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git


The following commit(s) were added to refs/heads/baremetal by this push:
     new 5aa82b86c custos-services bug fix in group resource manageer
     new 976ed0181 Merge pull request #357 from isururanawaka/baremetal
5aa82b86c is described below

commit 5aa82b86cdf9cde8e6ef4e508ed7dcba25db30b7
Author: Isuru Ranawaka <ir...@gmail.com>
AuthorDate: Thu Feb 9 22:17:09 2023 -0500

    custos-services bug fix in group resource manageer
---
 .../src/main/java/org/apache/custos/scim/resource/GroupResource.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/custos-services/custos-integration-services/scim-service/src/main/java/org/apache/custos/scim/resource/GroupResource.java b/custos-services/custos-integration-services/scim-service/src/main/java/org/apache/custos/scim/resource/GroupResource.java
index c6529f847..89837bae2 100644
--- a/custos-services/custos-integration-services/scim-service/src/main/java/org/apache/custos/scim/resource/GroupResource.java
+++ b/custos-services/custos-integration-services/scim-service/src/main/java/org/apache/custos/scim/resource/GroupResource.java
@@ -285,10 +285,10 @@ public class GroupResource extends AbstractResource {
         }
 
         custosExtention.put(Constants.DOMAIN, newObj.toString());
-        
+
         GroupResourceManager groupResourceManager = new GroupResourceManager();
 
-        SCIMResponse response = groupResourceManager.listWithPOST(resourceString, resourceManager);
+        SCIMResponse response = groupResourceManager.listWithPOST(custosExtention.toString(), resourceManager);
 
         return buildResponse(response);
     }