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

dimuthuupe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/master by this push:
     new c5ada8c  Fixing derby script issues
c5ada8c is described below

commit c5ada8ce5354cb7ec6095efa363c5646b3588d56
Author: Dimuthu Wannipurage <[email protected]>
AuthorDate: Mon Apr 29 12:56:48 2019 -0400

    Fixing derby script issues
---
 .../registry/registry-core/src/main/resources/expcatalog-derby.sql    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/modules/registry/registry-core/src/main/resources/expcatalog-derby.sql 
b/modules/registry/registry-core/src/main/resources/expcatalog-derby.sql
index 8ad0d33..1c1bf10 100644
--- a/modules/registry/registry-core/src/main/resources/expcatalog-derby.sql
+++ b/modules/registry/registry-core/src/main/resources/expcatalog-derby.sql
@@ -319,8 +319,8 @@ CREATE TABLE TASK (
   LAST_UPDATE_TIME timestamp DEFAULT CURRENT_TIMESTAMP,
   TASK_DETAIL CLOB,
   TASK_INTERNAL_STORE CHAR,
-  MAX_RETRY int(11) NOT NULL DEFAULT '3',
-  CURRENT_RETRY int(11) NOT NULL DEFAULT '0',
+  MAX_RETRY INT NOT NULL DEFAULT 3,
+  CURRENT_RETRY INT NOT NULL DEFAULT 0,
   PRIMARY KEY (TASK_ID),
   FOREIGN KEY (PARENT_PROCESS_ID) REFERENCES PROCESS(PROCESS_ID) ON DELETE 
CASCADE
 );

Reply via email to