You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2018/06/18 19:40:05 UTC

[airavata] branch group-based-auth updated: Fixing tests: Rename GATEWAY_DOMAIN column, add SUB_TASK_MODEL column

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

machristie pushed a commit to branch group-based-auth
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/group-based-auth by this push:
     new aae3c6e  Fixing tests: Rename GATEWAY_DOMAIN column, add SUB_TASK_MODEL column
aae3c6e is described below

commit aae3c6e92e2dc62f44efa76f411bc923e0a62cdf
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Jun 18 15:38:40 2018 -0400

    Fixing tests: Rename GATEWAY_DOMAIN column, add SUB_TASK_MODEL column
---
 .../airavata/registry/core/entities/expcatalog/GatewayEntity.java       | 2 +-
 modules/registry-refactoring/src/test/resources/expcatalog-derby.sql    | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/GatewayEntity.java b/modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/GatewayEntity.java
index 07eff13..c9155ef 100644
--- a/modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/GatewayEntity.java
+++ b/modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/GatewayEntity.java
@@ -41,7 +41,7 @@ public class GatewayEntity implements Serializable {
     @Column(name = "GATEWAY_NAME")
     private String gatewayName;
 
-    @Column(name = "GATEWAY_DOMAIN")
+    @Column(name = "DOMAIN")
     private String domain;
 
     @Column(name = "EMAIL_ADDRESS")
diff --git a/modules/registry-refactoring/src/test/resources/expcatalog-derby.sql b/modules/registry-refactoring/src/test/resources/expcatalog-derby.sql
index 06efd1a..1b5d764 100644
--- a/modules/registry-refactoring/src/test/resources/expcatalog-derby.sql
+++ b/modules/registry-refactoring/src/test/resources/expcatalog-derby.sql
@@ -322,6 +322,7 @@ CREATE TABLE TASK (
         LAST_UPDATE_TIME timestamp DEFAULT CURRENT_TIMESTAMP,
         TASK_DETAIL CLOB,
         TASK_INTERNAL_STORE CHAR,
+        SUB_TASK_MODEL BLOB,
         PRIMARY KEY (TASK_ID),
         FOREIGN KEY (PARENT_PROCESS_ID) REFERENCES PROCESS(PROCESS_ID) ON DELETE CASCADE
 );

-- 
To stop receiving notification emails like this one, please contact
machristie@apache.org.