http://jira.hyperic.com/browse/HHQ-4027
The ServiceManagerImpl's createService method adds duplicate service entry to the parent server.
Following line from createService() method adds the service after the serviceDAO create method already adds the service to the server.
// Add Service to parent collection
server.getServices().add(service);
Anonymous