Hello, I tried migrating same codebase to SpringBoot 3.1.5, it works fine for success scenario. Somehow Job restart logic does not work in same way.
Reproducing job restart with exception like below.
@Override public Entry process(Entry item) throws Exception { log.info("Processing: " + item); if (10 > 5) { throw new RuntimeException("ThisExceptionForJobRetry"); } return item; }