Skip to content

Commit 041c612

Browse files
authored
Remove block hound - inactive project, last commit was on April 2021. (#127)
BlockHound also complicates our build/releases and in special cases conflicts with some Spring annotations such as @testinstance(TestInstance.Lifecycle.PER_CLASS) with reactive flow.
1 parent 2c15b37 commit 041c612

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
<jackson-dataformat-yaml.version>2.13.4</jackson-dataformat-yaml.version>
3535
<lombok.version>1.18.24</lombok.version>
3636
<reactor-test.version>3.4.23</reactor-test.version>
37-
<blockhound.version>1.0.6.RELEASE</blockhound.version>
3837
<junit-jupiter.version>5.9.1</junit-jupiter.version>
3938
</properties>
4039

@@ -123,12 +122,6 @@
123122
<scope>test</scope>
124123
</dependency>
125124

126-
<dependency>
127-
<groupId>io.projectreactor.tools</groupId>
128-
<artifactId>blockhound</artifactId>
129-
<version>${blockhound.version}</version>
130-
<scope>test</scope>
131-
</dependency>
132125
<dependency>
133126
<groupId>org.junit.jupiter</groupId>
134127
<artifactId>junit-jupiter</artifactId>

src/test/java/com/aerospike/mapper/reactive/ReactiveAeroMapperBaseTest.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import com.aerospike.mapper.AeroMapperBaseTest;
66
import org.junit.jupiter.api.AfterAll;
77
import org.junit.jupiter.api.BeforeAll;
8-
import reactor.blockhound.BlockHound;
98

109
import java.io.IOException;
1110

@@ -23,9 +22,4 @@ public static void cleanupReactorClass() throws IOException {
2322
reactorClient.close();
2423
}
2524
}
26-
27-
@BeforeAll
28-
public static void installBlockHound() {
29-
BlockHound.install();
30-
}
3125
}

0 commit comments

Comments
 (0)