diff options
author | dyh <dengyuanhong@chinamobile.com> | 2020-05-27 10:36:10 +0800 |
---|---|---|
committer | dyh <dengyuanhong@chinamobile.com> | 2020-05-27 12:01:07 +0800 |
commit | fddda96911bdb3ec9841ac71e764cb6eb8fa08d5 (patch) | |
tree | 598d721cdcbf3793828c52134ae93c6061aa9a8f /catalog/pub/config/config.py | |
parent | 23785037bc77749a748c875712db84836fdf07e1 (diff) |
rename package name
add function for sdc subscribe and notification
Issue-ID: MODELING-366
Change-Id: I61dba314a62003577eddc640325f9c5b9263b2bc
Signed-off-by: dyh <dengyuanhong@chinamobile.com>
Diffstat (limited to 'catalog/pub/config/config.py')
-rw-r--r-- | catalog/pub/config/config.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/catalog/pub/config/config.py b/catalog/pub/config/config.py index dcc6cc1..99932d7 100644 --- a/catalog/pub/config/config.py +++ b/catalog/pub/config/config.py @@ -18,11 +18,6 @@ MSB_SERVICE_IP = '127.0.0.1' MSB_SERVICE_PORT = '80' MSB_BASE_URL = "%s://%s:%s" % (MSB_SERVICE_PROTOCOL, MSB_SERVICE_IP, MSB_SERVICE_PORT) -# [REDIS] -# REDIS_HOST = '127.0.0.1' -# REDIS_PORT = '6379' -# REDIS_PASSWD = '' - # [mysql] DB_IP = "127.0.0.1" DB_PORT = 3306 @@ -97,4 +92,11 @@ SDC_BASE_URL = "https://msb-iag/api" SDC_USER = "modeling" SDC_PASSWD = "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U" +# [dmaap config] +DMAAP_MR_IP = '127.0.0.1' +DMAAP_MR_PORT = '3904' +CONSUMER_GROUP = "consumerGroup" +CONSUMER_ID = "consumerId" +POLLING_INTERVAL = 15 + VNFD_SCHEMA_VERSION_DEFAULT = "base" |