1. 08 Oct, 2015 4 commits
  2. 07 Oct, 2015 2 commits
  3. 05 Oct, 2015 2 commits
  4. 03 Oct, 2015 1 commit
    • Upgrade to Zuul 1.1 · a7abfd42
      Dave Syer authored
      Still a release candidate (not yet GA), but seems to work, so we'll
      try and update before Spring Cloud is released again.
      
      Fixes gh-546, fixes gh-567, fixes gh-553 (probably)
  5. 01 Oct, 2015 1 commit
  6. 30 Sep, 2015 5 commits
  7. 29 Sep, 2015 5 commits
  8. 28 Sep, 2015 5 commits
  9. 25 Sep, 2015 9 commits
  10. 24 Sep, 2015 3 commits
    • use new commons code to provide hostInfo. · da04c537
      Spencer Gibb authored
      Set the default sid from common properties.
    • Update Eureka to 1.2.5-rc.1 · 8f9acab3
      Jon Schneider authored
      Remove Servo from EurekaHealthIndicator.
      Remove custom DataCenterInfo.
      EurekaInstanceConfig.SID is now used as eureka id.
      EurekaInstanceConfigBean.getSID falls back to metadataMap.instanceId for
      backwards compatibility.
    • Ensure changes to eureka metadata are relected on refresh · ded968ad
      Dave Syer authored
      And also when using eureka-first for discovering config server.
      The EurekaClient is very rigid and initializes itself, registering
      with the remote service on instantiation. Hance it needs to be
      in @RefreshScope for it to be properly refreshable. Doing that
      leads to a sequence of other changes (e.g. to account for the
      fact that there is no @RefreshScope in bootstrap context).
      
      Fixes gh-551
  11. 23 Sep, 2015 3 commits
    • Upgrade Hystrix to 1.4.15 · 581e9bbd
      Spencer Gibb authored
      fixes gh-534
    • Clean up eureka lifecycle · 797544e6
      Dave Syer authored
      When the parent (bootstrap) context registers the app as well as consuming
      the registry it causes problems, e.g. when you refresh that context is
      re-created and destroyed, which tends to unregister the app and it's hard
      to get it back. It is simpler if the parent context use eureka read-only.
      To ensure this we have to remove the @EnableDiscoveryClient from the
      bootstrap context.
      
      Tested with vanilla config server and eureka with the 'eureka-first'
      sample and the 'zuul-proxy-eureka' sample.
      
      Fixes gh-421