Willian Antunes

Results 7 comments of Willian Antunes

Hitting the same issue here as well, but in my case I'm usings `requests` which wraps it. @Lukasa, @haikuginger and @shazow I'm really aiming to get this solved. I'm studying...

One possible way to circumvent this, is to create a code like: ``` def _retry_if_exception_is_caught(execution_to_be_callable: Callable): max_tries = 5 tries = 0 while True: try: response = execution_to_be_callable() return response...

@arunvelsriram, you did fantastic work with this feature! It works like DISQUS. Pretty cool! Is the `Sign In` button issue a must-have requirement? Can this PR be merged without this,...

Sadly I had to drop the idea of using Cognito because it does not support the Authorization Code grant type through its API. I even thought it was possible to...

Hi everyone! I've made a blog post explaining [how to do SSO (single sign-on) with Cognito](https://www.willianantunes.com/blog/2021/11/sso-with-cognito-through-the-authorization-code-grant-type/). All the code can be consulted [here](https://github.com/willianantunes/tutorials/tree/master/2021/11/sso-cognito-authorization-code-grant-type), including the functional tests. I explain there...

Hello! I was able to circumvent the problem by using `createNodeField`. `gatsby-remark-relative-images` [mutates the node in memory](https://github.com/danielmahon/gatsby-remark-relative-images/blob/0a3888b4633330a39e433045b07455d9cc248c83/src/on-create-node.ts#L58), which is [wrong](https://www.gatsbyjs.com/docs/reference/release-notes/migrating-from-v3-to-v4/#dont-mutate-nodes-outside-of-expected-apis). You can check out my code at [this link](https://github.com/willianantunes/willianantunes.com/blob/921f9851a50125136f8beb6dcc4323fc0b53c80c/src/config/gatsby-node-handlers.js#L126-L160).

Solution can be checked [here](https://github.com/danielmahon/gatsby-remark-relative-images/issues/61#issuecomment-1646669116).