This is an automated email from the ASF dual-hosted git repository.
sergehuber pushed a change to branch UNOMI-139-878-integration-tests
in repository https://gitbox.apache.org/repos/asf/unomi.git
omit de19c58b2 UNOMI-139: Run HealthCheckIT last in AllITs suite
omit 9f1afed46 Revert "UNOMI-139: Fix TenantIT and EventsCollectorIT
integration failures"
omit c21d8880e UNOMI-139: Fix TenantIT and EventsCollectorIT integration
failures
omit b9c26f9d9 UNOMI-139 UNOMI-878: Platform integration tests
omit b5003e0cb UNOMI-880 UNOMI-878 UNOMI-139: Karaf dev shell commands
add ddd571d37 UNOMI-880 UNOMI-878 UNOMI-139: Karaf dev shell commands
(#763)
add 90909bb6f UNOMI-139 UNOMI-878: Platform integration tests
add 6d0e9fdee UNOMI-139: Fix TenantIT and EventsCollectorIT integration
failures
add b0f38c1b6 Revert "UNOMI-139: Fix TenantIT and EventsCollectorIT
integration failures"
add 96e93960e UNOMI-139: Run HealthCheckIT last in AllITs suite
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (de19c58b2)
\
N -- N -- N refs/heads/UNOMI-139-878-integration-tests
(96e93960e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../unomi/api/services/SchedulerService.java | 9 +
.../api/services/cache/MultiTypeCacheService.java | 11 ++
.../org/apache/unomi/api/utils/PollingUtils.java | 66 +++++++
.../apache/unomi/api/utils/PollingUtilsTest.java | 195 +++++++++++++++++++++
.../shell/commands/schema/SchemaCrudCommand.java | 26 +--
.../apache/unomi/itests/graphql/GraphQLListIT.java | 11 +-
.../apache/unomi/itests/shell/CacheCommandsIT.java | 21 ++-
.../apache/unomi/itests/shell/CrudCommandsIT.java | 54 +++++-
.../itests/shell/RuleStatisticsCommandsIT.java | 6 +-
.../unomi/itests/shell/SchedulerCommandsIT.java | 18 +-
.../unomi/itests/shell/ShellCommandsBaseIT.java | 2 -
.../impl/cache/MultiTypeCacheServiceImpl.java | 11 ++
.../scheduler/PersistenceSchedulerProvider.java | 13 ++
.../services/impl/scheduler/SchedulerProvider.java | 6 +
.../impl/scheduler/SchedulerServiceImpl.java | 15 ++
.../unomi/shell/dev/commands/CacheCommands.java | 35 ++--
.../dev/commands/apikeys/ApiKeyCrudCommand.java | 58 +++---
.../dev/commands/scheduler/ListTasksCommand.java | 18 +-
.../dev/commands/scheduler/PurgeTasksCommand.java | 15 +-
.../commands/scheduler/SetExecutorNodeCommand.java | 9 +-
.../dev/commands/tenants/TenantCrudCommand.java | 18 +-
21 files changed, 509 insertions(+), 108 deletions(-)
create mode 100644
api/src/main/java/org/apache/unomi/api/utils/PollingUtils.java
create mode 100644
api/src/test/java/org/apache/unomi/api/utils/PollingUtilsTest.java