fix type in publishing state change events

This commit is contained in:
Murali Reddy 2013-01-31 16:33:26 +05:30
parent 5ac5036ae7
commit b30f1b1f7a
4 changed files with 4 additions and 4 deletions

View File

@ -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.");
}
}

View File

@ -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.");
}
}

View File

@ -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.");
}
}

View File

@ -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.");
}
}