Merge pull request #36 from spring-operator/polish-urls-remaining-Edgware

URL Cleanup
This commit is contained in:
Ryan Baxter
2019-03-26 10:42:26 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@FeignClient(name = "example", url = "http://example.com")
@FeignClient(name = "example", url = "https://example.com")
public interface ExampleClient {
@RequestMapping(value = "/", method = RequestMethod.GET)

View File

@@ -1,6 +1,6 @@
# About
This project is a sample of using just the Hystrix Starter. For more information see the
[Hystrix documentation](http://cloud.spring.io/spring-cloud-static/spring-cloud.html#_circuit_breaker_hystrix_clients).
[Hystrix documentation](https://cloud.spring.io/spring-cloud-static/spring-cloud.html#_circuit_breaker_hystrix_clients).
# Usage
This simple app contains two endpoints both surrounded by Hystrix circuit breakers.