1. 04 Oct, 2017 1 commit
  2. 28 Sep, 2017 4 commits
  3. 26 Sep, 2017 2 commits
  4. 25 Sep, 2017 2 commits
  5. 16 Aug, 2017 1 commit
  6. 24 Jul, 2017 1 commit
  7. 21 Jul, 2017 2 commits
  8. 20 Jun, 2017 1 commit
  9. 06 Jun, 2017 1 commit
  10. 20 May, 2017 1 commit
  11. 17 May, 2017 1 commit
  12. 15 May, 2017 1 commit
  13. 12 May, 2017 1 commit
  14. 26 Apr, 2017 1 commit
  15. 19 Apr, 2017 1 commit
  16. 28 Feb, 2017 1 commit
    • Use prefer-ip-address in statusPageUrlPath · 129e0ce4
      windinn authored
      prefer-ip-address does not work in statusPageUrlPath when management port != server port
      
      This change gets `prefer-ip-address` via a relaxed property resolver to set the value during the creation of the `EurekaInstanceConfigBean`.
      
      fixes gh-1724
  17. 16 Dec, 2016 1 commit
  18. 08 Dec, 2016 1 commit
  19. 30 Nov, 2016 2 commits
  20. 29 Nov, 2016 1 commit
    • Fix Eureka Ribbon Auto Config conditions. · 111a95d2
      Spencer Gibb authored
      Specifically, add `@ConditionalOnBean(EurekaClient.class)`.
      
      Fixes an issue where eureka and ribbon are on the classpath, eureka.client.enabled=false which would cause a bean not found exception.
      
      fixes gh-1511
      
      (cherry picked from commit d1f8c031)
  21. 07 Nov, 2016 2 commits
  22. 25 Oct, 2016 2 commits
  23. 16 Sep, 2016 1 commit
  24. 22 Aug, 2016 1 commit
    • Make moving to https urls consistent. · 43adc84d
      Spencer Gibb authored
      This fixes a case where the ribbon property is set `ribbon.IsSecure=false`, but because the eureka secure port was enabled, the uri created by ribbon was prefixed with https when it shouldn't have.
      
      All places where isSecure is need have been consolidated into RibbonUtils.
      
      fixes gh-1270
  25. 17 Aug, 2016 1 commit
  26. 21 Jul, 2016 1 commit
  27. 24 Jun, 2016 1 commit
  28. 21 Jun, 2016 1 commit
  29. 27 Apr, 2016 1 commit
    • Use eureka.instance zone data consistently determining client zone · 6087bc75
      Dave Syer authored
      The zone for a remote server comes from its
      eureka.instance.metadataMap.zone, but we didn't (until this change)
      apply the same logic to the client. If the client is registering
      itslef with eureka then it will have a metadataMap itself and
      we should be able to just reverse the logic.
      
      Fixes gh-991
  30. 26 Apr, 2016 1 commit
  31. 07 Apr, 2016 1 commit
    • Ribbon retry works & fix Content-Length error. · 05351b78
      Tyler Van Gorder authored
      This change requires setting `ribbon.http.client.enabled=true`.
      
      This change addresses issue #648 Getting Retry Working In RestTemplate. There is also a fix in place that addresses the issue #357 RestTemplate Error.
      
      fixes gh-648