Increase timeout for WebTestClient

Sometimes the tests fail with the message Timeout on blocking read for 5000000000 NANOSECONDS
This commit is contained in:
Marcus Da Coregio
2021-12-10 14:28:52 -03:00
parent 15adedbf87
commit 070916cbcd
11 changed files with 11 additions and 11 deletions

View File

@@ -36,7 +36,7 @@ import static org.hamcrest.Matchers.containsString;
* @since 5.1
*/
@SpringBootTest
@AutoConfigureWebTestClient
@AutoConfigureWebTestClient(timeout = "36000")
@ActiveProfiles("test")
public class ServerOAuth2ResourceServerApplicationITests {