JuanC Galvis

Results 5 comments of JuanC Galvis

Hi @houllette, Sorry for not responding sooner, I was on other topics, returning to this idea. If you look at the changed code base, what I proposed was to generate...

That's clear, sure I can work from a new base of code having your position clear, thanks.

> I still don't like including this, because people will see LRU available and gravitate to it naturally. I think maybe putting some docs together, rather than including it, would...

> Yes. Addressed in #133 assuming Phoenix is being used but it kinda looks like this is just a cowboy server. Is that right @juancgalvis? Yes @bryannaegele it's a cowboy...

Hola @JorgeAlejandroAguirre puedes lograrlo de la siguiente manera: ```java @Bean @Primary public ConnectionFactoryProvider connection(RabbitConnectionProperties properties) { final ConnectionFactory factory = new ConnectionFactory(); PropertyMapper map = PropertyMapper.get(); map.from(properties::getHostname).whenNonNull().to(factory::setHost); map.from(properties::getPort).to(factory::setPort); map.from(properties::getUsername).whenNonNull().to(factory::setUsername); map.from(properties::getPassword).whenNonNull().to(factory::setPassword);...