-
Notifications
You must be signed in to change notification settings - Fork 96
Open
Description
Expected Behavior
public static void main(String[] args) {
BlockHound.install();
Mono.fromCallable(() -> {
try {
return Files.readString(testFilePath);
} catch (IOException e) {
throw new RuntimeException("Could not read file: " + testFilePath, e);
}
})
.subscribeOn(Schedulers.parallel())
.block();
// Expected blocking call error
}Actual Behavior
BlockHound does not detect call Files.readString(path).
Steps to Reproduce
I created small project to test this issue.
Your Environment
- Reactor version(s) used: 3.4.5
- JVM version: OpenJDK 64-Bit Server VM AdoptOpenJDK (build 11.0.7+10, mixed mode)
- OS and version: Linux 5.8.0-49-generic 20.04.1-Ubuntu x86_64
micopiira
Metadata
Metadata
Assignees
Labels
No labels