1. 25 Sep, 2017 1 commit
  2. 31 Aug, 2017 1 commit
  3. 18 Jul, 2017 1 commit
  4. 14 Jul, 2017 2 commits
  5. 13 Jul, 2017 1 commit
  6. 06 Jul, 2017 1 commit
  7. 28 Feb, 2017 1 commit
    • Moves EurekaServerConfiguration to auto-configuration · 99d9b17a
      Biju Kunjummen authored
      Eureka ServerConfiguration is now auto-configuration based, instead of being explicitly specified via configuration pulled in through @EnableEurekaServer. This way specific beans can be conditionally overridden, configuration can be re-ordered.
      Supports PeerEurekaNodes bean to be overridden by the user
      
      Fixes gh-1717
  8. 09 Jan, 2017 1 commit
  9. 07 Nov, 2016 1 commit
  10. 25 Oct, 2016 1 commit
  11. 19 Oct, 2016 1 commit
    • Move properties to new namespace. · ddc1069e
      Spencer Gibb authored
      Moving eureka.server.{expectedNumberOfRenewsPerMin,defaultOpenForTrafficCount} to eureka.instance.registry so relaxed binding can be used. Default to old values for backwards compatibility.
  12. 11 Oct, 2016 1 commit
  13. 10 Oct, 2016 1 commit
  14. 07 Oct, 2016 1 commit
  15. 06 Oct, 2016 1 commit
  16. 29 Aug, 2016 1 commit
  17. 17 Jun, 2016 1 commit
  18. 23 May, 2016 1 commit
  19. 18 May, 2016 1 commit
    • Align instanceId calculation with the one done on the client · a0c1b4c0
      Dave Syer authored
      The Angel client has an idiosyncratic way of calculating an instance
      id, and the Brixton client aligned with that already, but the
      Brixton server did not. This change should make Brixton Eureka
      Servers work with Angel clients.
      
      See gh-978
  20. 26 Apr, 2016 1 commit
  21. 20 Apr, 2016 1 commit
  22. 01 Apr, 2016 1 commit
  23. 23 Feb, 2016 2 commits
  24. 26 Jan, 2016 1 commit
    • Relay eureka.environment to Archaius if it is set · 7bdab0f2
      Dave Syer authored
      Apparently we already support eureka.datacenter as an alias for
      archaius.deployment.datacenter and it looks like when that code
      was written we intended to support eureka.environment in a similar way.
      But it was never finished off, so this change adds the necessary one
      line of code.
      
      Fixes gh-791
  25. 18 Jan, 2016 1 commit
  26. 30 Nov, 2015 1 commit
  27. 23 Nov, 2015 1 commit
    • Don't extend EurekaBootStrap. · d23a57d1
      Spencer Gibb authored
      EurekaBootStrap implements ServletContextListener which causes problems because of early instantiation.
      
      fixes gh-664
  28. 20 Nov, 2015 1 commit
  29. 19 Nov, 2015 1 commit
  30. 10 Nov, 2015 1 commit
  31. 04 Nov, 2015 1 commit
  32. 13 Oct, 2015 1 commit
    • Add isDebugEnabled() check · 914fee9a
      alexVengrovsk authored
      It is good thing to make this checks because of expensive concatenation of String objects (debug messages).
  33. 12 Oct, 2015 2 commits
  34. 25 Sep, 2015 2 commits
  35. 24 Sep, 2015 2 commits
    • 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