amolkumar18

Results 6 comments of amolkumar18
trafficstars

Ok. Give me sometime, will get back to you on this with artifact's n sample code,

```java @Service public class MigrationStepOne { @Autowired private Service1 Service1; @Retryable(backoff = @Backoff(5000), value = {Exception.class}) public String stepOneProcessing(CustomerMigrationStep cms){ try{ String str = "Hello" + 4/0; return "successful"; }catch(Exception...

org.springframework.boot spring-boot-starter-parent 2.5.0 pom org.springframework.retry spring-retry 1.3.1

public class Service1{ @Autowired private CustomerMigrationStepRepo repo; public void saveFailedCount(CustomerMigrationStep cms){ repo.saveAndFlush(cms); } }

Table entry CustId. failureCount 1 3 Ideally after scheduler call it should update to 6 but it's not happening. Count remains 3 only.