GlobalConfiguration global = defaults.getGlobalConfiguration().clone();
String name = this.configuration.getName();
// set up transport only if transport is required by some cache in the cache manager
TransportConfiguration transport = this.configuration.getTransportConfiguration();
FluentGlobalConfiguration.TransportConfig fluentTransport = global.fluent().transport();
// If our transport service is running, configure Infinispan to use it
if (context.getController().getServiceContainer().getRequiredService(getTransportServiceName(name)).getState() == ServiceController.State.UP) {
log.debugf("Initializing %s cache container transport", name) ;