Fixed a defect where a newly arrived instance would not be added on the client.
Change-Id: Ifb8c6489ef54476a2e4c322dbf83b15ecc178cd6
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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 | ... | ... |
-
Please register or login to post a comment