diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2018-11-02 10:59:55 -0400 |
---|---|---|
committer | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-11-02 16:16:42 +0000 |
commit | 436298f42d4473f09929926913660b190882b04c (patch) | |
tree | 4091d12d9f265ac4620d7bda742f2f762ffdd584 /installation | |
parent | 19328f96d1af31e11590c8931118888db56a59a1 (diff) |
Update ueb timeout and fix tables
Update timeout on UEB startup from 15 mins to 5 mins, and fixed
table definition errors found during SDC testing.
Change-Id: Ib4a8f48a02a3ef536c6d433deb3ad96f6ac3e4da
Issue-ID: SDNC-472
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
(cherry picked from commit c45118bb57ddcd0536358e710f5d93a7600f37df [formerly ccf26e7ccf39215dd9c3847e415513783377946c])
Former-commit-id: 4d30a97b737d640322a8c0ce6289f3993705c0ba
Diffstat (limited to 'installation')
-rw-r--r-- | installation/sdnc/src/main/resources/sdnctl.dump | 6 | ||||
-rwxr-xr-x | installation/ueb-listener/src/main/properties/ueb-listener.properties | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/installation/sdnc/src/main/resources/sdnctl.dump b/installation/sdnc/src/main/resources/sdnctl.dump index b5ea0229..ee6d8460 100644 --- a/installation/sdnc/src/main/resources/sdnctl.dump +++ b/installation/sdnc/src/main/resources/sdnctl.dump @@ -495,9 +495,9 @@ DROP TABLE IF EXISTS `CONFIG_TRANSACTION_LOG`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CONFIG_TRANSACTION_LOG` ( - `config_transaction_log_id` int(11) NOT NULL AUTO_INCREMENT, + `config_transaction_log_id` varchar(50) NOT NULL, `request_id` varchar(50) DEFAULT NULL, - `message_type` varchar(50) DEFAULT NULL, + `message_type` varchar(100) DEFAULT NULL, `creation_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `message` longtext, PRIMARY KEY (`config_transaction_log_id`), @@ -991,7 +991,7 @@ CREATE TABLE `GENERIC_RESOURCE_NAME` ( `name` varchar(255) NOT NULL, `prefix` varchar(255) NULL, `name_index` int(11) NULL, - `content_id` varchar(255) NULL, + `context_id` varchar(255) NULL, PRIMARY KEY (`type`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; diff --git a/installation/ueb-listener/src/main/properties/ueb-listener.properties b/installation/ueb-listener/src/main/properties/ueb-listener.properties index ae613f46..c8418d02 100755 --- a/installation/ueb-listener/src/main/properties/ueb-listener.properties +++ b/installation/ueb-listener/src/main/properties/ueb-listener.properties @@ -17,7 +17,7 @@ org.onap.ccsdk.sli.northbound.uebclient.spool.incoming=/opt/onap/sdnc/ueb-listen org.onap.ccsdk.sli.northbound.uebclient.spool.archive=/opt/onap/sdnc/ueb-listener/spool/archive org.onap.ccsdk.sli.northbound.uebclient.polling-interval=30 org.onap.ccsdk.sli.northbound.uebclient.polling-timeout=15 -org.onap.ccsdk.sli.northbound.uebclient.client-startup-timeout=900 +org.onap.ccsdk.sli.northbound.uebclient.client-startup-timeout=300 org.onap.ccsdk.sli.northbound.uebclient.relevant-artifact-types=TOSCA_CSAR org.onap.ccsdk.sli.northbound.uebclient.activate-server-tls-auth=false org.onap.ccsdk.sli.northbound.uebclient.keystore-path= |