Am building a rest service using spring boot. I am testing the Hystrix timeout configurations in my application; for that I started my server in debug mode and put break point to see how much time it is actually takes to timeout.
While the control comes to break point; I observed that if I let controller to wait for more than the timeout configured; there is yet another same request being spanned somehow.
Is there a way to avoid the second request being spanned?