Pascal Ouellet

Results 4 comments of Pascal Ouellet

I think this is not fixed until 2.5.4 gets released? This seems to be the actual backport that fixed the issue https://bugs.ruby-lang.org/projects/ruby-trunk/repository/ruby_2_5/revisions/66225. Ruby 2.5.3 was released at r65273. Or am...

> Ngx-bootstrap doesn't include this particular case. If you get an object with html tag, you should convert it by yourself. Fair enough, thanks for the update. > If a...

I ran into something similar. I have an existing FastAPI app and I was hoping of using FastMCP to expose a subset of the FastAPI endpoints as MCP tools. Something...

This [approach](https://github.com/modelcontextprotocol/python-sdk/issues/673#issuecomment-2896633770) seems to do the trick. ``` def combine_lifespans(*lifespans): @asynccontextmanager async def combined_lifespan(app): async with AsyncExitStack() as stack: for lifespan in lifespans: await stack.enter_async_context(lifespan(app)) yield return combined_lifespan # Api...