mirror of https://github.com/apache/cloudstack.git
fix type in publishing state change events
This commit is contained in:
parent
5ac5036ae7
commit
b30f1b1f7a
|
|
@ -75,7 +75,7 @@ public class NetworkStateListener implements StateListener<State, Event, Network
|
|||
try {
|
||||
_eventBus.publish(eventMsg);
|
||||
} catch (EventBusException e) {
|
||||
s_logger.warn("Failed to publish action event on the the event bus.");
|
||||
s_logger.warn("Failed to publish state change event on the the event bus.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ public class SnapshotStateListener implements StateListener<State, Event, Snapsh
|
|||
try {
|
||||
_eventBus.publish(eventMsg);
|
||||
} catch (EventBusException e) {
|
||||
s_logger.warn("Failed to publish action event on the the event bus.");
|
||||
s_logger.warn("Failed to publish state change event on the the event bus.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ public class VolumeStateListener implements StateListener<State, Event, Volume>
|
|||
try {
|
||||
_eventBus.publish(eventMsg);
|
||||
} catch (EventBusException e) {
|
||||
s_logger.warn("Failed to publish action event on the the event bus.");
|
||||
s_logger.warn("Failed to state change event on the the event bus.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ public class UserVmStateListener implements StateListener<State, VirtualMachine.
|
|||
try {
|
||||
_eventBus.publish(eventMsg);
|
||||
} catch (EventBusException e) {
|
||||
s_logger.warn("Failed to publish action event on the the event bus.");
|
||||
s_logger.warn("Failed to publish state change event on the the event bus.");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue