Brian O'Connor

ONOS-3728 Storing annotations in GossipHostStore.createHost

Change-Id: Ie5ec5b2e0902257ee3ed5a44c3cb8a23dca2f826
......@@ -251,7 +251,8 @@ public class GossipHostStore
descr.hwAddress(),
descr.vlan(),
descr.location(),
ImmutableSet.copyOf(descr.ipAddress()));
ImmutableSet.copyOf(descr.ipAddress()),
descr.annotations());
StoredHost concAdd = hosts.putIfAbsent(hostId, newhost);
if (concAdd != null) {
// concurrent add detected, retry from start
......