1. 29 Nov, 2014 1 commit
    • Ensure user-suppplied ZuulFilters are added properly · 70c3d9e7
      Dave Syer authored
      Bean instantiation ordering was causing external (user-supplied)
      filter beans to replace the defaults, not append to them. Separating
      out the autowired map of beans into a spearate class was enough to
      fix it.
      
      Fixes gh-78
  2. 26 Nov, 2014 16 commits
  3. 25 Nov, 2014 10 commits
  4. 24 Nov, 2014 2 commits
  5. 22 Nov, 2014 1 commit
  6. 21 Nov, 2014 4 commits
  7. 20 Nov, 2014 1 commit
  8. 19 Nov, 2014 1 commit
  9. 17 Nov, 2014 2 commits
  10. 14 Nov, 2014 1 commit
  11. 13 Nov, 2014 1 commit
    • Use custom DataCenterInfo to make instance ID unique · 5cd88deb
      Dave Syer authored
      The problem manifests itself as errors in the Eureka server
      log (gh-47), but originates in the client because it is sending
      requests to /eureka/apps/{NAME}/{ID} with the wrong ID. The
      InstanceInfo has an ID that is derived (for preference) from
      the EurekaInstanceConfig.dataCenterInfo, so that's the best
      way to fix it.
      
      See gh-63, Fixes gh-47