Shannon Pamperl

Results 67 comments of Shannon Pamperl

Correct, it is a matter of the number of instances. In my situation I've got services with 2 instances, so it comes out as a 50/50 split. With sufficient concurrency,...

Noticed this while coming up with the details around #1370, so they're definitely related. With 1370, it's a matter of being able to evict a server instance because it has...

> it shouldn't retry anything but GET by default. Retry in gateway doesn't distinguish between a 500 or a timeout. Here's a sample showing this. https://github.com/shanman190/spring-cloud-gateway-gh1371

I think that could work as a short term, but in all likeliness it's might be easier to treat/implement the LoadBalanacer returned, or have create a LoadBalancer, as stateful one...

It could do that. In the Netflix ribbon code it did have a ping check, but I believe it was not the default. I have a suspicion that probably relates...

@jkschneider, so you're thinking a composite module with all rewrite modules being API dependencies? Given this allows version alignment of all core rewrite modules and not all modules are required,...

This is now completed and awaiting releases. _Gradle_ ``` api(platform("org.openrewrite.recipe:rewrite-recipe-bom:latest.release")) ``` _Maven_ ``` org.openrewrite.recipe rewrite-recipe-bom latest.release ```

For full transparency as well, there is a `rewrite-bom` which provides version alignment of core rewrite modules. This is specifically helpful for consumption within the various recipe jars (including custom...

@yiekel, for your particular above use case, you'll be adding the `org.openrewrite.recipe:rewrite-recipe-bom` to your dependency management. It imports the `rewrite-bom` as well as provides dependency management for all current and...

So I personally don't use maven often, but apparently Maven doesn't support BOMs for plugins even though it's a heavily requested feature... https://issues.apache.org/jira/browse/MNG-5588 @tkvangorder, you are correct. The intent for...