You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by st...@apache.org on 2021/06/02 14:13:00 UTC

[sling-org-apache-sling-discovery-commons] branch master updated (2cb3cde -> ca1cfed)

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

stefanegli pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-discovery-commons.git.


    from 2cb3cde  Adding sonarqube badges as per SLING-9682
     new be90d46  SLING-10353 : factoring out SimpleCommonsConfig for reuse
     new c7b4c6b  SLING-10353 : some more logging details
     new 3466695  SLING-10353 : test added which reproduces the leaked thread case
     new 2cdb489  SLING-10353 : fix thread leak - added additional test coverage of ClusterSyncServiceChain
     new 222a548  SLING-10353 : TestOakViewStateManager fixed
     new ca1cfed  Merge pull request #1 from stefan-egli/SLING-10353

The 116 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:
 .../spi/base/ClusterSyncServiceChain.java          |  33 +-
 .../providers/spi/base/SyncTokenService.java       |   3 +-
 .../commons/providers/SimpleCommonsConfig.java     |  59 +++
 .../commons/providers/base/DummyScheduler.java     |  56 ++-
 .../providers/base/TestOakViewStateManager.java    | 283 ++++++++++++++
 .../spi/base/DummyClusterSyncService.java          | 190 ++++++++++
 .../spi/base/TestClusterSyncServiceChain.java      | 416 +++++++++++++++++++++
 .../spi/base/TestOakSyncTokenService.java          |  41 +-
 8 files changed, 1034 insertions(+), 47 deletions(-)
 create mode 100644 src/test/java/org/apache/sling/discovery/commons/providers/SimpleCommonsConfig.java
 create mode 100644 src/test/java/org/apache/sling/discovery/commons/providers/base/TestOakViewStateManager.java
 create mode 100644 src/test/java/org/apache/sling/discovery/commons/providers/spi/base/DummyClusterSyncService.java
 create mode 100644 src/test/java/org/apache/sling/discovery/commons/providers/spi/base/TestClusterSyncServiceChain.java