Skip to content

Commit f5076c4

Browse files
committed
fix(*): remove unnecessary exception according review comments
Signed-off-by: Stepan Mikhailiuk <istepancar@gmail.com>
1 parent 7b4dd7c commit f5076c4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

spring-cloud-gateway-server/src/main/java/org/springframework/cloud/gateway/filter/factory/SetRequestUriGatewayFilterFactory.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ protected Optional<URI> determineRequestUri(ServerWebExchange exchange, Config c
9090
return Optional.of(uri);
9191
}
9292
catch (IllegalArgumentException e) {
93-
9493
log.info("Request url is invalid : url={}, error={}", config.getTemplate(), e.getMessage());
9594
return Optional.ofNullable(null);
9695
}

0 commit comments

Comments
 (0)