diff options
Diffstat (limited to 'deliveries')
-rw-r--r-- | deliveries/portal.cql | 3 | ||||
-rw-r--r-- | deliveries/portalsdk.cql | 3 | ||||
-rw-r--r-- | deliveries/properties_simpledemo/ONAPPORTAL/logback.xml | 4 | ||||
-rw-r--r-- | deliveries/start-apache-tomcat.sh | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/deliveries/portal.cql b/deliveries/portal.cql index b871ab9f..249f8712 100644 --- a/deliveries/portal.cql +++ b/deliveries/portal.cql @@ -53,4 +53,5 @@ CREATE TABLE portal.spring_session_attributes ( AND read_repair_chance = 0.0 AND speculative_retry = '99PERCENTILE'; -CREATE TABLE portal.healthcheck (id uuid PRIMARY KEY);
\ No newline at end of file +CREATE TABLE portal.health_check (primary_id text PRIMARY KEY, creation_time text); +insert into portal.health_check (primary_id,creation_time) values ('ECOMPPortal-25927','2018-05-25T20:14:39.408Z'); diff --git a/deliveries/portalsdk.cql b/deliveries/portalsdk.cql index bf4e71a3..8c8feaf7 100644 --- a/deliveries/portalsdk.cql +++ b/deliveries/portalsdk.cql @@ -53,4 +53,5 @@ CREATE TABLE portalsdk.spring_session_attributes ( AND read_repair_chance = 0.0 AND speculative_retry = '99PERCENTILE'; -CREATE TABLE portalsdk.healthcheck (id uuid PRIMARY KEY); +CREATE TABLE portalsdk.health_check (primary_id text PRIMARY KEY, creation_time text); +insert into portalsdk.health_check (primary_id,creation_time) values ('ECOMPPortal-25927','2018-05-25T20:14:39.408Z'); diff --git a/deliveries/properties_simpledemo/ONAPPORTAL/logback.xml b/deliveries/properties_simpledemo/ONAPPORTAL/logback.xml index 7ce20937..a8496a88 100644 --- a/deliveries/properties_simpledemo/ONAPPORTAL/logback.xml +++ b/deliveries/properties_simpledemo/ONAPPORTAL/logback.xml @@ -3,7 +3,7 @@ ============LICENSE_START========================================== ONAP Portal =================================================================== - Copyright © 2017 AT&T Intellectual Property. All rights reserved. + Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved. =================================================================== Unless otherwise specified, all software contained herein is licensed @@ -39,7 +39,7 @@ <!DOCTYPE xml> <configuration scan="true" scanPeriod="3 seconds" debug="true"> - <!-- Log-back files for the ECOMP Portal are created in directory + <!-- Log-back files for the ONAP Portal are created in directory ${catalina.base}/logs/${componentName}; e.g., apache-tomcat-8.0.35/logs/onapportal/application.log --> <!--<jmxConfigurator /> --> diff --git a/deliveries/start-apache-tomcat.sh b/deliveries/start-apache-tomcat.sh index db39248b..522eaf2a 100644 --- a/deliveries/start-apache-tomcat.sh +++ b/deliveries/start-apache-tomcat.sh @@ -51,4 +51,4 @@ fi echo "$0: Starting server from $BASE" LOGFILE=${BASE}/logs/catalina.out echo "`date`:<-------------------- Starting -------------------->" >> $LOGFILE -exec ${BASE}/bin/catalina.sh run 2>&1 | tee -a $LOGFILE +exec ${BASE}/bin/catalina.sh run 2>&1 | tee -a $LOGFILE
\ No newline at end of file |