Will Sargent

Results 199 comments of Will Sargent

It may be easier to wait for Junit 5 at this point: http://junit.org/junit5/

At https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/server.py#L262 the library incorrectly tries to pass host and port as keyword arguments directly to the `anyio.run` function, which doesn't accept them in that manner. You can patch it...

I think this is because the `scheduler.scheduleOnce` method creates a new `Runnable` and passes the function in: ```scala final def schedule(initialDelay: FiniteDuration, interval: FiniteDuration)(f: => Unit)( implicit executor: ExecutionContext): Cancellable...

@Dogacel checkout [wsargent/opentelemetry-with-scala-futures](https://github.com/wsargent/opentelemetry-with-scala-futures)

``` play.http.context = "/foo" ``` http://localhost:9000/foo -> OK Can't reproduce on 2.4.2 onwards.

The assumption in the documentation is that if you're using logger.resource= or logger.file= then you don't have a raw logback.xml file in configuration at all. This may be easier to...

I don't think this is right. It is new eager bindings on start, but the new application doesn't start until there's a new request -- it's request driven.