mario45211

Results 7 comments of mario45211

up - I wasted few hours trying to figured out why my configuration has not been resolving because of this confusing doc... 👎

I've spotted the same issue and completely agree with author. At least adding some DEBUG log could be useful to point out that refresh cannot be done.

Simple implementation I've written using Ribbon: ```java public class WeightedRoundRobinLoadBalancer extends com.netflix.loadbalancer.BaseLoadBalancer { public WeightedRoundRobinLoadBalancer(Properties propertiesWithWeights) { super("Operator weighted LB", new RoundRobinRule(), null); buildFromGivenWeights(propertiesWithWeights); } /** * Confront with com.netflix.loadbalancer.ILoadBalancer.addServer()...

I spotted another hardcoded parameter - this time on the Python's side: In file `jet_to_python_grpc_server.py` there is snippet: ```python server = grpc.server(futures.ThreadPoolExecutor(max_workers=1), options=[ ('grpc.max_send_message_length', 100 * 1024 * 1024), ('grpc.max_receive_message_length',...

Spotted the same issue with FF 107 and rxjs 7.8.0. Is there any known workaround to cancel requests in Firefox ?

+1 As a little hacky workaround I'm extracting 'python' directory from Jar to local file system, which then could be read by Jet at startup

Fully agree with @RusmanCool ! While writing my tests I was forced to use reflection to access `Point`'s details. Package-private getters are not the only way to keep your class...