Configuration Change 29/4029/1 1.0.5
authorsjana <sj492a@att.com>
Mon, 8 Jun 2020 19:38:49 +0000 (15:38 -0400)
committersjana <sj492a@att.com>
Mon, 8 Jun 2020 19:38:49 +0000 (15:38 -0400)
Issue-ID: RICAPP-115

Signed-off-by: sjana <sj492a@att.com>
Change-Id: Ie2e68f5326a02b94df072909ad0d6111217cd078

container-tag.yaml
docs/release-notes.rst
init/config-file.json
src/xapp-utils/xapp_config.cc

index 951186d..fc58593 100644 (file)
@@ -1,4 +1,4 @@
 # this is used by CI jobs to apply a tag when it builds the image
 ---
-tag: '1.0.4'
+tag: '1.0.5'
 
index 4288c25..bf96134 100644 (file)
@@ -21,7 +21,7 @@ Version history
 | **Date**           | **Ver.**           | **Author**         | **Comment**        |
 |                    |                    |                    |                    |
 +--------------------+--------------------+--------------------+--------------------+
-| 2020-06-06         | 1.0.4              |   Shraboni Jana    | Fourth draft       |
+| 2020-06-08         | 1.0.5              |   Shraboni Jana    | Fifth draft        |
 |                    |                    |                    |                    |
 +--------------------+--------------------+--------------------+--------------------+
 
index 78f9a64..b9b23b2 100644 (file)
@@ -7,7 +7,7 @@
                 "image": {
                     "registry": "nexus3.o-ran-sc.org:10002",
                     "name": "o-ran-sc/ric-app-hw",
-                    "tag": "1.0.4"
+                    "tag": "1.0.5"
                        }
             }
         ],
index 8f1ef67..251f503 100644 (file)
@@ -119,7 +119,7 @@ void XappSettings::loadEnvVarSettings(){
                  theSettings[XAPP_NAME].assign(env_xname);
                  mdclog_write(MDCLOG_INFO,"Xapp Name set to %s from environment variable", theSettings[XAPP_NAME].c_str());
          }
-         if (const char *env_xid = std::getenv("XAPP_ID")){
+         if (const char *env_xid = std::getenv("XAPP_NAME")){
                   theSettings[XAPP_ID].assign(env_xid);
                   mdclog_write(MDCLOG_INFO,"Xapp ID set to %s from environment variable", theSettings[XAPP_ID].c_str());
          }