CreateNodeConfigurations never exits 49/73949/5
authorRob Daugherty <rd472p@att.com>
Thu, 29 Nov 2018 15:02:08 +0000 (10:02 -0500)
committerRob Daugherty <rd472p@att.com>
Tue, 4 Dec 2018 17:41:22 +0000 (17:41 +0000)
A non-daemon background thread is keeping the process alive
even when the main method is done.

Change-Id: I707a30df758e847a160f55512219add37eddaab1
Issue-ID: MUSIC-217
Signed-off-by: Rob Daugherty <rd472p@att.com>
mdbc-server/src/main/java/org/onap/music/mdbc/tools/CreateNodeConfigurations.java

index 00f6616..d5ab051 100755 (executable)
@@ -85,5 +85,6 @@ public class CreateNodeConfigurations {
         }
         configs.readInput();
         configs.createAndSaveNodeConfigurations();
+        System.exit(0);
     }
 }