1. 05 May, 2015 1 commit
  2. 04 May, 2015 2 commits
    • Merge pull request #316 from brenuart/issue-312 · 85b7ccf6
      Spencer Gibb authored
      Make creation of the RestClient LAZY as it is no always required (issue #312)
    • Reason why Eureka instance is not found is not visible · eed9b996
      Marcin Grzejszczak authored
      With the following configuration at `bootstrap.yaml`
      
      ```yaml
      
      spring:
        application.name: spring-cloud-hystrix-dashboard
        profiles.active: prod
        cloud:
          config:
            discovery:
              enabled: true
              serviceId: spring-cloud-server-config-with-eureka
      server.port: 9003
      
      turbine:
        appConfig: some-service
        clusterNameExpression: 'default'
      ```
      
      I wasn't able to see why Turbine can't find the instance. The reason was related to SPEL:
      
      ```
      org.springframework.expression.spel.SpelEvaluationException: EL1008E:(pos 0): Property or field 'default' cannot be found on object of type 'com.netflix.appinfo.InstanceInfo' - maybe not public?
      ```
      
      Anyways there was nothing there in the logs so maybe it should not be silenced like right now?
  3. 01 May, 2015 6 commits
  4. 30 Apr, 2015 3 commits
  5. 28 Apr, 2015 1 commit
  6. 24 Apr, 2015 1 commit
  7. 23 Apr, 2015 1 commit
  8. 22 Apr, 2015 1 commit
  9. 17 Apr, 2015 2 commits
  10. 16 Apr, 2015 3 commits
  11. 14 Apr, 2015 3 commits
  12. 13 Apr, 2015 7 commits
  13. 11 Apr, 2015 1 commit
    • Exclude mockito-all from zuul-core and turbine-core · 24241972
      Johannes Stelzer authored
      However turbine and zuul are depending on mockito-all in compile-scope. Not only I want to get rid of these (usually) test-dependencies, but also mockito-all contains some hamcrest-classes (in older versions) getting in conflict with the classes from spring-test
  14. 06 Apr, 2015 1 commit
  15. 02 Apr, 2015 2 commits
  16. 01 Apr, 2015 2 commits
    • Use UrlPathHelper to determine the current url path in Zuul · 555b1f1c
      Dave Syer authored
      If the app has a context path then the route locator does not match
      the whole requestURI (as provided by the raw servlet API), but Spring
      has a utility for stripping it off, so we can just use that.
      
      Fixes gh-270
    • Make /error path a special case in ZuulHandlerMapping · 5961931c
      Dave Syer authored
      If there is a default route (/**) then the ZuulHandlerMapping will
      mask the /error path in a normal Spring Boot application. This change
      makes it a special case so that ZuulHandlerMapping will never map
      the /error route (the one specified by the ErrorController).
      
      Fixes gh-284
  17. 27 Mar, 2015 3 commits