Following up on RHPAM-3487, it would be good to have configuration options available to control the behavior of the OptimisticLockRetryInterceptor:
- retries
- delay
- delayFactor
This would allow users to configure the retry logic as they see fit. Thanks!
Created new flags
private int retries = Integer.getInteger("org.kie.optlock.retries", 5); private long delay = Long.getLong("org.kie.optlock.delay", 50L); private long delayFactor = Long.getLong("org.kie.optlock.delayFactor", 4L);
- is related to
-
JBPM-9656 Provide configuration parameters for OptimisticLockRetryInterceptor
- Resolved
-
RHPAM-3487 Task instance marked as Completed despite OptimisticLockException
- Closed