Mantas Audickas

Results 15 comments of Mantas Audickas

Well.. Consul is Fabio database.. so it just needs to use it. In my case services with `urlprefix-/sales/api` tags are already in Consul, but lets say for some reason all...

Yes, that's correct. Routes are available in Consul, but if all registered instances are down (warning and/or critical state) - fabio should respond with 503 instead of selecting another matching...

I actually noticed interesting behavior: if I disable connection string pooling, my connection count starts growing and connections stays idle, but is never closed.. Normally I have these settings: ```...

It makes sense to disable connection pooling on multitenant applications, where each tenant has own database. Lets imagine if you have 1000 of these databases and you enable connection pooling...

This can be reproduced with very simple test: ``` public Tests(ITestOutputHelper debug) { _debug = debug; } [Fact] public void Run() { var test = Substitute.For(); test.Name.Returns("example"); // outputs: One:...

To be honest - I do not remember anything here what was here done :) So I guess it simply can be closed without integrating it :)

I have added you as collaborator. Sorry, just have no time to handle all these things here at the moment as we also do not use Ocelot in our infrastructure...

> I'm just curious, why did your team stop using Ocelot? What are the reasons? We never used it. It did not passed our needs (that's why this PR was...