Thomas Vachuska

Fixed a defect where a newly arrived instance would not be added on the client.

Change-Id: Ifb8c6489ef54476a2e4c322dbf83b15ecc178cd6
...@@ -311,7 +311,7 @@ public abstract class TopologyViewMessages { ...@@ -311,7 +311,7 @@ public abstract class TopologyViewMessages {
311 String type = messageType != null ? messageType : 311 String type = messageType != null ? messageType :
312 ((event.type() == INSTANCE_ADDED) ? "addInstance" : 312 ((event.type() == INSTANCE_ADDED) ? "addInstance" :
313 ((event.type() == INSTANCE_REMOVED ? "removeInstance" : 313 ((event.type() == INSTANCE_REMOVED ? "removeInstance" :
314 - "updateInstance"))); 314 + "addInstance")));
315 return envelope(type, 0, payload); 315 return envelope(type, 0, payload);
316 } 316 }
317 317
......