From 5600c2af06561b5802261a696d7168f8402b21bf Mon Sep 17 00:00:00 2001 From: vikasrohit Date: Fri, 31 Jul 2020 13:05:01 +0530 Subject: [PATCH 1/2] Fixing serialization issue with ProjectGroup Potential fix of https://github.com/appirio-tech/direct-app/issues/537 --- .../topcoder/management/project/ProjectGroup.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/components/project_management/src/java/main/com/topcoder/management/project/ProjectGroup.java b/components/project_management/src/java/main/com/topcoder/management/project/ProjectGroup.java index 6f6566e7a..286bec052 100644 --- a/components/project_management/src/java/main/com/topcoder/management/project/ProjectGroup.java +++ b/components/project_management/src/java/main/com/topcoder/management/project/ProjectGroup.java @@ -22,12 +22,20 @@ *

* Changes related to v5-groups-api *

- * - * @author dushyantb - * @version 1.1 + * Version 1.2 (Fixing serilization error for ProjectGroup): + * + * @author dushyantb, vikasrohit + * @version 1.2 */ public class ProjectGroup implements Serializable { + /** + * Unique seriliazation version id + */ + private static final long serialVersionUID = 652485342267757690L; + /** * Represents group id */ From 9fa3a8c3971405e67d67050381a82f324b9b2d14 Mon Sep 17 00:00:00 2001 From: vikasrohit Date: Fri, 31 Jul 2020 18:23:34 +0530 Subject: [PATCH 2/2] Making feature branch deployable for testing Deploying to dev env for testing --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3d337fabb..ef65ea6a9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -90,7 +90,7 @@ workflows: context : org-global filters: branches: - only: [dev, dev-sts] + only: [dev, dev-sts, 'feature/serialization_error_for_ProjectGroup'] - build-qa: context : org-global filters: