ionutzpi commented on code in PR #43: URL: https://github.com/apache/sling-org-apache-sling-event/pull/43#discussion_r2086276094
########## src/main/java/org/apache/sling/event/impl/jobs/queues/JobQueueImpl.java: ########## @@ -468,6 +476,10 @@ public void close() { * Periodic maintenance */ public void maintain() { + if (!services.configuration.isJobProcessingEnabled()) { + logger.debug("Job processing is disabled, skipping maintenance for queue {}", queueName); + return; + } Review Comment: Removed based an new isActive condition. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@sling.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org