You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by tm...@apache.org on 2019/12/20 12:35:19 UTC

[sling-org-apache-sling-distribution-core] branch master updated (8a18935 -> f8c016e)

This is an automated email from the ASF dual-hosted git repository.

tmaret pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-core.git.


    from 8a18935  SLING-8854 In-file and In-memory queue-providers for Forward Distribution report incorrect value for processing "Attempts" (#26)
     new 351f186  SLING-8853 Adds ActiveResourceQueue and makes it available as possible queue.provider for ForwardDistributionAgentFactory
     new dea3dbd  SLING-8853 Adds test for ActiveResourceQueue
     new fc933a4  SLING-8853 Keeping SonarQube happy
     new 724c224  SLING-8853 Keeping SonarQube happy (take #2)
     new cf022c2  SLING-8853 Queue Processing Job name should be based on agent-name instead of service-name
     new f8c016e  Merge pull request #24 from actinium15/issue/SLING-8853

The 436 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                            |   1 +
 .../impl/ForwardDistributionAgentFactory.java      |   7 +-
 .../agent/impl/SimpleDistributionAgent.java        |   2 +-
 .../queue/impl/resource/ActiveResourceQueue.java   |  74 ++++++
 .../queue/impl/resource/ResourceQueue.java         |  11 +-
 .../queue/impl/resource/ResourceQueueProvider.java |  72 +++++-
 .../resource/ResourceQueueProviderFactory.java     |  28 ++-
 .../simple/SimpleDistributionQueueProcessor.java   |   2 +-
 .../impl/resource/ResourceQueueProcessingTest.java | 268 +++++++++++++++++++++
 9 files changed, 446 insertions(+), 19 deletions(-)
 create mode 100644 src/main/java/org/apache/sling/distribution/queue/impl/resource/ActiveResourceQueue.java
 create mode 100644 src/test/java/org/apache/sling/distribution/queue/impl/resource/ResourceQueueProcessingTest.java