ONOS-3728 Storing annotations in GossipHostStore.createHost

Change-Id: Ie5ec5b2e0902257ee3ed5a44c3cb8a23dca2f826
diff --git a/core/store/dist/src/main/java/org/onosproject/store/host/impl/GossipHostStore.java b/core/store/dist/src/main/java/org/onosproject/store/host/impl/GossipHostStore.java
index b2e4b97..c0da9b9 100644
--- a/core/store/dist/src/main/java/org/onosproject/store/host/impl/GossipHostStore.java
+++ b/core/store/dist/src/main/java/org/onosproject/store/host/impl/GossipHostStore.java
@@ -251,7 +251,8 @@
                     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