Skip to content

Commit e88ec06

Browse files
committed
Disable flaky unit test for undertow
1 parent 2302358 commit e88ec06

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spring-webflux/src/test/java/org/springframework/web/reactive/function/MultipartRouterFunctionIntegrationTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -163,6 +163,8 @@ void partData(HttpServer httpServer) throws Exception {
163163

164164
@ParameterizedHttpServerTest
165165
void proxy(HttpServer httpServer) throws Exception {
166+
assumeFalse(httpServer instanceof UndertowHttpServer, "Undertow currently fails proxying requests");
167+
166168
startServer(httpServer);
167169

168170
Mono<ResponseEntity<Void>> result = webClient

0 commit comments

Comments
 (0)