1. 20 Jul, 2017 1 commit
    • Ensure ordering of feign ribbon client configuration. · 97f1655f
      Spencer Gibb authored
      On certain platforms and compilers the generated bytecode is not what
      the configuration expected. By moving inner classes to the upper level
      and using @Import this will guarantee the proper order.
      
      fixes gh-2086
  2. 19 Jul, 2017 1 commit
    • Ensure ordering of ribbon client configuration. · 6b530b02
      Spencer Gibb authored
      On certain platforms and compilers the generated bytecode is not what
      the configuration expected. By moving inner classes to the upper level
      and using @Import this will guarantee the proper order.
      
      fixes gh-2086
  3. 30 Jun, 2017 1 commit
  4. 15 Jun, 2017 1 commit
  5. 09 Jun, 2017 2 commits
  6. 08 Jun, 2017 1 commit
  7. 06 Jun, 2017 1 commit
  8. 05 Jun, 2017 2 commits
  9. 31 May, 2017 1 commit
  10. 22 May, 2017 1 commit
    • Ignore feign.hystrix.enabled. · 25a18811
      Spencer Gibb authored
      Let SecurityContextConcurrencyStrategy be installed as the hystrix
      concurrency strategy regardless of if feign's hystrix support is installed.
      
      fixes gh-1969
  11. 20 May, 2017 1 commit
  12. 15 May, 2017 2 commits
  13. 09 May, 2017 3 commits
  14. 04 May, 2017 1 commit
  15. 02 May, 2017 2 commits
  16. 24 Apr, 2017 1 commit
  17. 18 Apr, 2017 1 commit
  18. 05 Apr, 2017 1 commit
    • Implements zuul CounterFactory · 834980ea
      Anastasiia Smirnova authored
      CounterFactory is used by ZuulException and was previously initialzed
      with a dummy impl.
      
      This adds a Spring Boot CounterService based implementation.
      
      Also adds the ability to implement a zuul TracerFactory.
  19. 04 Apr, 2017 1 commit
  20. 03 Apr, 2017 1 commit
  21. 24 Mar, 2017 2 commits
  22. 23 Mar, 2017 1 commit
  23. 20 Mar, 2017 1 commit
  24. 14 Mar, 2017 6 commits
  25. 08 Mar, 2017 1 commit
  26. 07 Mar, 2017 1 commit
    • Don't remove content-length header in feign ribbon. · 15e01dfe
      Spencer Gibb authored
       Previously, when feign used the Ribbon RestClient, an exception was thrown if Content-Length was set. Over time, feign has moved away from RestClient, yet removing the header still happened.
      
       Fixes gh-1705
  27. 03 Mar, 2017 1 commit
  28. 02 Mar, 2017 1 commit
    • Make sure MetricsRestTemplateAspectConfiguration is applied in time. · 465582d2
      Bertrand Renuart authored
      `MetricsRestTemplateConfiguration` creates a BeanPostProcessor used to configure RestTemplate instances when added to the application context. It should be made @ConditionalOnClass(RestTemplate) instead of @ConditionalOnBean(RestTemplate) since it should be present *before* any RestTemplate bean instance is created. (#1747)
      
      fixes gh-1153