int port = portString == null
? ConfigurationProperties.DEFAULT_HOTROD_PORT
: Integer.parseInt(portString);
serverHostnames.add(host);
builder.addServer().host(host).port(port);
}
if (enableQuery) {
queryable = new InfinispanHotrodQueryable(this);
ProtoStreamMarshaller marshaller = new ProtoStreamMarshaller();
builder.marshaller(marshaller);