Change-Id: I50e20eb4aca2eb9eceb2e29b21703352f4a4a971
Issue-ID: MUSIC-73
Signed-off-by: Vikram Potturi(apotturi) <vp9004@att.com>
<groupId>org.onap.music</groupId>
<artifactId>MUSIC</artifactId>
<packaging>jar</packaging>
- <version>2.5.4</version>
+ <version>2.5.5</version>
<description>
This is the MUSIC interface, packaged as a jar file.
</description>
}
// get the property value and return it
MusicUtil.setMyCassaHost(prop.getProperty("cassandra.host"));
- String[] zkHost = prop.getProperty("zookeeper.host").split(",");
- MusicUtil.setMyZkHost(zkHost[0]);
+ String zkHosts = prop.getProperty("zookeeper.host");
+ MusicUtil.setMyZkHost(zkHosts);
MusicUtil.setCassName(prop.getProperty("cassandra.user"));
MusicUtil.setCassPwd(prop.getProperty("cassandra.password"));
}