fix code check

pull/881/head
seanyu 3 years ago
parent eaf11c08fd
commit a0d10a527f

@ -33,7 +33,6 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
import org.springframework.test.annotation.DirtiesContext; import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.junit.jupiter.SpringExtension; import org.springframework.test.context.junit.jupiter.SpringExtension;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
@ -121,7 +120,7 @@ public class PolarisCircuitBreakerFeignIntegrationTest {
@FeignClient(value = "foo-service", fallbackFactory = CustomFallbackFactory.class) @FeignClient(value = "foo-service", fallbackFactory = CustomFallbackFactory.class)
public interface FooService { public interface FooService {
@RequestMapping(value = "echo/{str}") @RequestMapping("echo/{str}")
String echo(@RequestParam("str") String param); String echo(@RequestParam("str") String param);
} }

Loading…
Cancel
Save