Yash Saxenadevelopwithyash.hashnode.dev·Jun 20, 2024Spring Boot Microservice Communication: What's New?Spring Boot has long been favored for its ability to simplify the bootstrapping and development of new Spring applications. Part of this simplification is the abstraction of complex configurations and operations behind concise, intention-revealing in...28 readsSpringboot
Luis Rodero-Merinolrodero.hashnode.dev·Jun 2, 2024Micro library for retries in cats-effect using Scala extensionsThis blog entry will show how to add a simple retry mechanism to cats-effect (CE) using Scala 3 extensions. The idea is that whenever we define our IO instances we can also specify that, if they fail and certain conditions are met, they will be autom...Scala
Pankaj Suryavanshidevtestops.hashnode.dev·Jan 23, 2024Retry Failed Test in TestNG with IRetryAnalyzerIntroduction Automated testing is a crucial part of the software development lifecycle, providing rapid feedback on the health of an application. However, dealing with failed test cases and understanding their root causes can be challenging. In this ...Selenium Javaselenium
Akshay Suresh Thekkathblog.akshaythekkath.com·May 1, 2023Implementing API Timeouts and Retries in PythonAPI Timeouts: Why should we implement timeouts? When developing a backend system, it is likely that you will need to integrate it with other internal backend systems or third-party APIs. Suppose that the Orders API needs to access information from th...945 readsPython