Git Product home page Git Product logo

Comments (2)

simonbasle avatar simonbasle commented on May 20, 2024

I think that the usual "Mono is asynchronous" caveat applies here: BlockHound can't probably attach the execution phase of the lambda that invokes sleep to the fail() method (which only assembles the Mono without subscribing to it). So what's visible in the stack when the blocking call is attempted is the lamba, the subscribe call and the test method.

In order to allow this particular blocking call, you could use lambda$fail$0 as the method name.

Better yet, I'd advise you to extract that to a relevant method (let's call it example()), replace the lambda with the method's reference and configure BlockHound to allow said method:

@Component
public class BlockHoundDemo {
    
    public void example(Long l) {
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            throw new RuntimeException();
        }
    }

    public Mono<Long> fail() {
        return Mono.delay(Duration.ofSeconds(1)).doOnNext(this::example);
    }
}

and

builder.allowBlockingCallsInside("com.example.demo.BlockHoundDemo", "example");

from blockhound.

wermerb avatar wermerb commented on May 20, 2024

@simonbasle Thank you very much for the explanation indeed it works :)

from blockhound.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.