Update blockhound settings

This commit is contained in:
Janne Valkealahti
2020-10-18 10:08:41 +01:00
parent 7ec28522cf
commit 15a0b2d3dc
2 changed files with 4 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ buildscript {
curatorVersion = '2.11.1'
docResourcesVersion = '0.2.1.RELEASE'
awaitilityVersion = '3.1.6'
reactorBlockHoundVersion = '1.0.1.RELEASE'
reactorBlockHoundVersion = '1.0.4.RELEASE'
}
repositories {
maven { url 'https://repo.springsource.org/libs-release'}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2019 the original author or authors.
* Copyright 2019-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -28,6 +28,7 @@ public class StateMachineBlockHoundIntegration implements BlockHoundIntegration
.allowBlockingCallsInside("org.springframework.statemachine.monitor.StateMachineMonitorTests$LatchAction", "execute")
.allowBlockingCallsInside("org.springframework.statemachine.state.CompletionEventTests$Config1$1", "execute")
.allowBlockingCallsInside("org.apache.commons.logging.LogAdapter$Log4jLog", "debug")
.allowBlockingCallsInside("org.springframework.statemachine.state.ObjectStateTests$TestBlockingAction", "sleep");
.allowBlockingCallsInside("org.springframework.statemachine.state.ObjectStateTests$TestBlockingAction", "sleep")
.allowBlockingCallsInside("org.springframework.statemachine.action.ActionAndTimerTests$TestTimerAction", "execute");
}
}