Skip to content

Commit 36935fb

Browse files
committed
Bumping versions
1 parent b2f980f commit 36935fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-cloud-gateway-server-webflux/src/test/java/org/springframework/cloud/gateway/filter/factory/RequestRateLimiterGatewayFilterFactoryTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ private void assertFilterFactory(KeyResolver keyResolver, String key, boolean al
151151
}).expectComplete().verify();
152152
}
153153
else if (throwOnLimit != null && throwOnLimit && !allowed) {
154-
// if throwOnLimit is true and the request is denied, we expect an error instead of a complete signal
154+
// if throwOnLimit is true and the request is denied, we expect an error
155+
// instead of a complete signal
155156
voidFirstStep.consumeErrorWith(throwable -> {
156157
assertThat(throwable).isInstanceOf(HttpClientErrorException.class);
157158
HttpClientErrorException ex = (HttpClientErrorException) throwable;

0 commit comments

Comments
 (0)