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 {
String type = messageType != null ? messageType :
((event.type() == INSTANCE_ADDED) ? "addInstance" :
((event.type() == INSTANCE_REMOVED ? "removeInstance" :
"updateInstance")));
"addInstance")));
return envelope(type, 0, payload);
}
......