Przemysław Łada
Przemysław Łada
> What is the concurrency model proposed? How does it interact with ASGI, and how will it interact with `asyncio` where there is no process isolation between workers? What's the...
Hi everyone! @suren-atoyan thank you for your great work on this project :+1: Recently we started using `monaco-react` in our web app, where unit testing is very important. All attempts...
@maarcingebala, I appreciate your insightful suggestions. I've addressed all of them and updated the POC description, please take a look. In the **"Discussion Points"** section, I've identified potential blockers that...
I have just pushed a new version of the ValidationError conversion (Pydantic -> Django). It is simplified and more Pydantic V2 ready.
Hey @yale, thank you so much for sharing your solution. Unfortunately, I still have problems with getting this add-on to work with Storyshots. It looks like `MockedProvider` is still not...
It worked :champagne: @yale thank you for your code snippets and help, you saved me from spending the next couple of hours striving to configure these addons to work. That's...
@lifeiscontent thanks for the clue, I checked if I don't have multiple versions of apollo installed. :+1: Additionally, @lifeiscontent thank you so much for your work on this Storybook addon....
@pkucmus this line wasn't working for me: ```python jwt_payload = jwt.decode(saleor_token, verify=False) ``` it should be ```python jwt_payload = jwt.JWT().decode(token, do_verify=False) ``` from what I found