Skip to content

Commit b04e64b

Browse files
atakavciggivoCopilotuglide
authored
[automatic failover] Automatic failover client improvements (part 1) (#4228)
* Setup test infra for automatic failover tests * Add toxyproxy * Add test endpoints * Add example tests * [automatic-failover] Enforce formatting for automatic failover codebase (#4176) * enforce formating for mcf * enforce formating for mcf * Trigger integration test jobs feature branches * [automatic failover] Improve failover resilience by evaluating circuit breaker before retries (#4178) * fix: Change evaluation order of circuit breaker and retry mechanisms This commit modifies the order in which circuit breaker and retry mechanisms are evaluated during failover scenarios. Previously, the circuit breaker was applied after all retries were exhausted, which could delay failover in unstable network conditions. Now, the circuit breaker counts each connection error separately, even during retry attempts. * format * format * use java-8 compatible formater version * fix AutomaticFailoverTest * formating * [automatic-failover] Implement failover retry for in-flight commands (#4175) * Implement failover retry for in-flight commands This change adds support for retrying in-flight commands when a Redis connection fails and the client automatically fails over to another cluster. The feature is configurable through the FailoverOptions builder. Key changes: - Added retryFailedInflightCommands option to FailoverOptions - Implemented retry logic in CircuitBreakerCommandExecutor - Added integration tests to verify both retry and no-retry behavior - Created utility methods for test setup and configuration This enhancement improves resilience for long-running commands like blocking operations, allowing them to transparently continue on the failover cluster without client-side errors. * Update src/main/java/redis/clients/jedis/mcf/CircuitBreakerCommandExecutor.java Co-authored-by: Copilot <[email protected]> # Conflicts: # src/main/java/redis/clients/jedis/mcf/CircuitBreakerCommandExecutor.java * format format & clean-up * fix FailoverIntegrationTest.testInflightCommandsAreNotRetriedAfterFailover blpop timeout should be less than async command timeout to prevent completing with java.util.concurrent.TimeoutException instead of actuall command failure * Address comments from review - rename retryFailedInflightCommands->retryOnFailover - remove check for CB in OPEN state * remove unused method --------- Co-authored-by: Copilot <[email protected]> * [automatic-failover] Fix formatting for anticipated AA Failover changes (#4183) * fix formatting for anticipated failover changes * additional formatting to cover given folders * [automatic failover] Implement HealtStatusManager + weighted endpoints (#4189) * - weighted cluster seleciton - Healtstatus manager with initial listener and registration logic - pluggable health checker strategy introduced, these are draft NoOpStrategy, EchoStrategy, LagAwareStrategy, - fix failing tests impacted from weighted clusters * - add builder for ClusterConfig - add echo ot CommandObjects and UnifiedJEdis - improve StrategySupplier by accepting jedisclientconfig - adapt EchoStrategy to StrategySupplier. Now it handles the creation of connection by accepting endpoint and JedisClientConfig - make healthchecks disabled by default - drop noOpStrategy - add unit&integration tests for health check * - fix naming * clean up and mark override methods * fix link in javadoc * fix formatting * - fix double registered listeners in healtstatusmgr - clear redundant catch - replace failover options and drop failoveroptions class - remove forced_unhealthy from healthstatus - fix failback check - add disabled flag to cluster - update/fix related tests * Update src/main/java/redis/clients/jedis/mcf/EchoStrategy.java Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]> * [automatic failover] Implement add/remove endpoints (#4200) * - weighted cluster seleciton - Healtstatus manager with initial listener and registration logic - pluggable health checker strategy introduced, these are draft NoOpStrategy, EchoStrategy, LagAwareStrategy, - fix failing tests impacted from weighted clusters * - add builder for ClusterConfig - add echo ot CommandObjects and UnifiedJEdis - improve StrategySupplier by accepting jedisclientconfig - adapt EchoStrategy to StrategySupplier. Now it handles the creation of connection by accepting endpoint and JedisClientConfig - make healthchecks disabled by default - drop noOpStrategy - add unit&integration tests for health check * - fix naming * clean up and mark override methods * fix link in javadoc * fix formatting * - fix double registered listeners in healtstatusmgr - clear redundant catch - replace failover options and drop failoveroptions class - remove forced_unhealthy from healthstatus - fix failback check - add disabled flag to cluster - update/fix related tests * Update src/main/java/redis/clients/jedis/mcf/EchoStrategy.java Co-authored-by: Copilot <[email protected]> * - add remove endpoints * - replace cluster disabled with failbackCandidate - replace failback enabled with failbacksupported in client - fix formatting - set defaults * - remove failback candidate - fix failing tests * - fix remove logic - fix failing tests --------- Co-authored-by: Copilot <[email protected]> * [automatic failover] Implement failback with given grace period (#4204) * - weighted cluster seleciton - Healtstatus manager with initial listener and registration logic - pluggable health checker strategy introduced, these are draft NoOpStrategy, EchoStrategy, LagAwareStrategy, - fix failing tests impacted from weighted clusters * - add builder for ClusterConfig - add echo ot CommandObjects and UnifiedJEdis - improve StrategySupplier by accepting jedisclientconfig - adapt EchoStrategy to StrategySupplier. Now it handles the creation of connection by accepting endpoint and JedisClientConfig - make healthchecks disabled by default - drop noOpStrategy - add unit&integration tests for health check * - fix naming * clean up and mark override methods * fix link in javadoc * fix formatting * - fix double registered listeners in healtstatusmgr - clear redundant catch - replace failover options and drop failoveroptions class - remove forced_unhealthy from healthstatus - fix failback check - add disabled flag to cluster - update/fix related tests * Update src/main/java/redis/clients/jedis/mcf/EchoStrategy.java Co-authored-by: Copilot <[email protected]> * - add remove endpoints * - replace cluster disabled with failbackCandidate - replace failback enabled with failbacksupported in client - fix formatting - set defaults * - remove failback candidate - fix failing tests * - fix remove logic - fix failing tests * - periodic failback checks - introduce graceperiod - fix issue when CB is forced_open and gracePeriod is completed * - format * - fix timing issue --------- Co-authored-by: Copilot <[email protected]> * [automatic failover] Implement wait on healthCheck results during client init (#4207) * - weighted cluster seleciton - Healtstatus manager with initial listener and registration logic - pluggable health checker strategy introduced, these are draft NoOpStrategy, EchoStrategy, LagAwareStrategy, - fix failing tests impacted from weighted clusters * - add builder for ClusterConfig - add echo ot CommandObjects and UnifiedJEdis - improve StrategySupplier by accepting jedisclientconfig - adapt EchoStrategy to StrategySupplier. Now it handles the creation of connection by accepting endpoint and JedisClientConfig - make healthchecks disabled by default - drop noOpStrategy - add unit&integration tests for health check * - fix naming * clean up and mark override methods * fix link in javadoc * fix formatting * - fix double registered listeners in healtstatusmgr - clear redundant catch - replace failover options and drop failoveroptions class - remove forced_unhealthy from healthstatus - fix failback check - add disabled flag to cluster - update/fix related tests * Update src/main/java/redis/clients/jedis/mcf/EchoStrategy.java Co-authored-by: Copilot <[email protected]> * - add remove endpoints * - replace cluster disabled with failbackCandidate - replace failback enabled with failbacksupported in client - fix formatting - set defaults * - remove failback candidate - fix failing tests * - fix remove logic - fix failing tests * - periodic failback checks - introduce graceperiod - fix issue when CB is forced_open and gracePeriod is completed * - introduce StatusTracker with purpose of waiting initial healthcheck results during consturction of provider - add HealthStatus.UNKNOWN as default for Cluster - handle status changes in order of events during initialization - add tests for status tracker and orderingof events - fix impacted unit&integ tests * - introduce forceActiveCluster by duration - fix formatting * - fix failing tests by waiting on clusters to get healthy * - fix failing scenario test - downgrade logback version for slf4j compatibility - increase timeouts for faultInjector * - adressing reviews and feedback * - fix formatting * - fix formatting * - get rid of the queue and event ordering for healthstatus change in MultiClusterPooledConnectionProvider - add test for init and post init events - fix failing tests * - replace use of reflection with helper methods - fix failing tests due to method name change * - replace 'sleep' with 'await', feedback from @a-TODO-rov --------- Co-authored-by: Copilot <[email protected]> * [automatic failover] Introduce fast failover mode - a thread-sync-free approach with builders (#4226) * - weighted cluster seleciton - Healtstatus manager with initial listener and registration logic - pluggable health checker strategy introduced, these are draft NoOpStrategy, EchoStrategy, LagAwareStrategy, - fix failing tests impacted from weighted clusters * - add builder for ClusterConfig - add echo ot CommandObjects and UnifiedJEdis - improve StrategySupplier by accepting jedisclientconfig - adapt EchoStrategy to StrategySupplier. Now it handles the creation of connection by accepting endpoint and JedisClientConfig - make healthchecks disabled by default - drop noOpStrategy - add unit&integration tests for health check * - fix naming * clean up and mark override methods * fix link in javadoc * fix formatting * - fix double registered listeners in healtstatusmgr - clear redundant catch - replace failover options and drop failoveroptions class - remove forced_unhealthy from healthstatus - fix failback check - add disabled flag to cluster - update/fix related tests * Update src/main/java/redis/clients/jedis/mcf/EchoStrategy.java Co-authored-by: Copilot <[email protected]> * - add remove endpoints * - replace cluster disabled with failbackCandidate - replace failback enabled with failbacksupported in client - fix formatting - set defaults * - remove failback candidate - fix failing tests * - fix remove logic - fix failing tests * - periodic failback checks - introduce graceperiod - fix issue when CB is forced_open and gracePeriod is completed * - introduce StatusTracker with purpose of waiting initial healthcheck results during consturction of provider - add HealthStatus.UNKNOWN as default for Cluster - handle status changes in order of events during initialization - add tests for status tracker and orderingof events - fix impacted unit&integ tests * - introduce forceActiveCluster by duration - fix formatting * - fix failing tests by waiting on clusters to get healthy * - fix failing scenario test - downgrade logback version for slf4j compatibility - increase timeouts for faultInjector * - adressing reviews and feedback * - fix formatting * - fix formatting * - get rid of the queue and event ordering for healthstatus change in MultiClusterPooledConnectionProvider - add test for init and post init events - fix failing tests * - replace use of reflection with helper methods - fix failing tests due to method name change * - introduce clusterSwitchEvent and drop clusterFailover post processor - fix broken echostrategy due to connection issue - make healtthCheckStrategy closable and close on - adding fastfailover mode to config and provider - add local failover tests for total failover duration * - introduce fastfailover using objectMaker injection into connectionFactory * - polish * - cleanup * - improve healtcheck thread visibility * - introduce TrackingConnectionPool with FailFastConnectionFactory - added builders to connection and connectionFactory - introduce initializtionTracker to track list of connections during their construction. * - return broken source as usual - do not throw exception is failover already happening * - unblock waiting threads * - failover by closing the pool * - formatting * - check waiters and active/idle connections to force disconnect * - add builder to trackingconnectionpool * - fix failing tests due to mocked ctor for trackingConnectionPool * - replace initTracker with split initializtion of conn * - refactor on builders and ctors * - undo format * - clena up * - add exceptions to logs * - add max wait duration and minConsecutiveSuccessCount to healthCheckStrategy * - replace 'sleep' with 'await', feedback from @a-TODO-rov * - fix status tracker tests --------- Co-authored-by: Copilot <[email protected]> * [automatic failover] Add tests: EchoStrategy does recover on connection error (#4230) * Add tests: EchoStrategy does recover on connection error * log error's on exception * [automatic failover] Replace 'SimpleEntry' with 'HealthCheckResult' (#4236) * - replace SimpleEntry with HealthCheckResult * - format * [automatic failover] Add rate limiter to test MultiThreadedFakeApp (#4248) * Add option for rate limiter to MultiThreadedFakeApp * retrigger checks * [automatic failover] Implement lag-aware api (#4235) * - lag-aware api * - introduce healtCheckMetaConfig - add config objects for both EchoStrategy and LagAwareStrategy - make StrategySupplier interface generic - fix impacted tests * - fix issues with docs and log * Fix EchoStrategyIntegrationTest after merge * Implement resolve bdbId based on configured HostAndPort * format & merge RedisRestAPI unit tests * introduce builder for LagAwareStrategy * configurable extended-check - provide option to enable/disable lag check - default to lag-aware check with AVAILABILITY_LAG_TOLERANCE_DEFAULT of 100ms * - fix java doc issue * - formatting * -fix doc issue * - formatting * revert introduce healtCheckMetaConfig - introduces type unsafe warnings, revert till they are resovled * Add list constructor * Add option for rate limiter to MultiThreadedFakeApp * Use /v1/local/bdbs/<int:uid>/endpoint/availability - use /v1/local/bdbs/<int:uid>/endpoint/availability instead of availability address vs /v1/bdbs/<int:uid>/availability * Add builder factory method for base HealthCheckStrategy.Config * format * format * revert to /v1/bdbs/<int:uid>/availability reading again the spec /local is inteded to be used when configuring LoadBalancers * revert to /v1/bdbs/<int:uid>/availability reading again the spec /local is inteded to be used when configuring LoadBalancers * format * fix unit test after revert of local * format * Address review comments - remove misleading default value comment - renamed Config.endpoint to Config.restEndpoint - renamed dataPathAvailability -> databaseAvailability --------- Co-authored-by: ggivo <[email protected]> * [automatic failover] Refactor cluster to replace `HealthStatus` with `HealthCheck` itself (#4244) * - set sleep duration 1 ms for forceDisconnect * - refactor cluster to replace HealthStatus with HealthCheck itself * - move Endpoint to parent package * - format * - fix typo * - adjust tests with new provider behaviour with HealthCheck * Address review comments - rename getTimeout() -> getMaxWaitFor() - remove unnecessary noHealthChecks * resolve merge conflicts * format * format --------- Co-authored-by: Ivo Gaydazhiev <[email protected]> * [automatic failover] fix: health checks continue to run even after provider is closed. (#4252) * fix: health checks continue to run even after provider is closed. Closes #4251 * format * format & fix tests after merge format * [automatic failover] Improve AA failover scenario test (#4249) * Improve AA failover test * Fix endpoint name * Count failedCommandsAfterFailover * do not enforce formating on ActiveActiveFailoverTest --------- Co-authored-by: Ivo Gaydazhiev <[email protected]> * [automatic failover ]fix: only notify health status listeners on actual state changes #4255 (#4256) * fix: only notify health status listeners on actual state changes #4255 - Replace overlapping health checks with sequential execution - use wasUpdated flag to prevent false notifications from timestamp conflicts. Eliminates race conditions causing spurious failovers. Closes: #4255 * format * Update src/main/java/redis/clients/jedis/mcf/HealthCheckImpl.java Co-authored-by: atakavci <[email protected]> * revert to fixed rate health checks * fix ActiveActiveLocalFailoverTest - reduced endpoint pause to 10s to speed up test - ensure test endpoint is eavailable before startign the test (awaits up to endpoint pause time) --------- Co-authored-by: atakavci <[email protected]> * Connection.forceDisconnect should also set the connection as broken #4233 (#4258) Address: Connection.forceDisconnect should also set the connection as broken #4233 * [automatic failover] Update failover docs (#4257) * Initial draft * Cover health checks * Add javadoc's for MultiClusterClientConfig * Fix docs for health checks * Fix javadoc's * Update wordlist.txt --------- Co-authored-by: Ivo Gaydazhiev <[email protected]> * rever hbase-formatter.xml changes - ensure hbase-formatter.xml match current one in master * reformat to comply with hbase-formater rules in master * fix errors after merge - setClusterFailoverPostProcessor renamed - format AutomaticFailoverTest * format - Endpoint.java * format - ActiveActiveLocalFailoverTest - FailbackMechanismIntegrationTest - FailbackMechanismUnitTest - PeriodicFailbackTest - StatusTrackerTest format - ActiveActiveLocalFailoverTest.java * Add failover containers for testing to local test infra * [automatic failover] Address review comments (#4264) Address review comments - replace magic numbers in tests with constats --------- Co-authored-by: ggivo <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: Igor Malinovskiy <[email protected]>
1 parent 56eef41 commit b04e64b

File tree

64 files changed

+9026
-1023
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+9026
-1023
lines changed

.github/wordlist.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ ClusterPubSub
1818
ConnectionPool
1919
CoreCommands
2020
config
21+
Customizable
22+
CRDB
2123
Dockerfile
2224
EVAL
2325
EVALSHA
26+
EchoStrategy
2427
FTCreateParams
2528
FTSearchParams
2629
Failback
@@ -37,6 +40,7 @@ Grokzen's
3740
HostAndPort
3841
HostAndPortMapper
3942
HostnameVerifier
43+
hostnames
4044
INCR
4145
IOError
4246
Instrumentations
@@ -52,6 +56,7 @@ JedisPool
5256
JedisPooled
5357
JedisPubSub
5458
JedisShardInfo
59+
LagAwareStrategy
5560
ListPosition
5661
Ludovico
5762
Magnocavallo
@@ -70,6 +75,7 @@ POJO
7075
POJOs
7176
PoolConfig
7277
PubSub
78+
pluggable
7379
Queable
7480
README
7581
READONLY

.github/workflows/test-on-docker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

3-
name: Build and Test using containerized environment
3+
name: Build and Test using a containerized environment
44

55
on:
66
push:
@@ -11,10 +11,12 @@ on:
1111
branches:
1212
- master
1313
- '[0-9].*'
14+
- 'feature/**'
1415
pull_request:
1516
branches:
1617
- master
1718
- '[0-9].*'
19+
- 'feature/**'
1820
schedule:
1921
- cron: '0 1 * * *' # nightly build
2022
workflow_dispatch:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ tags
1717
redis-git
1818
appendonlydir/
1919
.DS_Store
20+
.vscode/settings.json

Makefile

Lines changed: 40 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ PATH := ./redis-git/src:${PATH}
44
SUPPORTED_TEST_ENV_VERSIONS := 8.2 8.0 7.4 7.2 6.2
55
DEFAULT_TEST_ENV_VERSION := 8.2
66
REDIS_ENV_WORK_DIR := $(or ${REDIS_ENV_WORK_DIR},/tmp/redis-env-work)
7+
CLIENT_LIBS_TEST_IMAGE := redislabs/client-libs-test:8.2
8+
TOXIPROXY_IMAGE := ghcr.io/shopify/toxiproxy:2.8.0
79

810
define REDIS1_CONF
911
daemonize yes
@@ -441,6 +443,7 @@ export REDIS_UNAVAILABLE_CONF
441443

442444

443445
start: cleanup compile-module
446+
export TEST_ENV_PROVIDER=local
444447
echo "$$REDIS1_CONF" | redis-server -
445448
echo "$$REDIS2_CONF" | redis-server -
446449
echo "$$REDIS3_CONF" | redis-server -
@@ -473,59 +476,53 @@ start: cleanup compile-module
473476
echo "$$REDIS_UDS" | redis-server -
474477
echo "$$REDIS_UNAVAILABLE_CONF" | redis-server -
475478
redis-cli -a cluster --cluster create 127.0.0.1:7479 127.0.0.1:7480 127.0.0.1:7481 --cluster-yes
476-
docker run -p 6479:6379 --name jedis-stack -e PORT=6379 -d redislabs/client-libs-test:8.2
479+
docker run -p 6479:6379 --name jedis-stack -e PORT=6379 -d ${CLIENT_LIBS_TEST_IMAGE}
480+
docker network create jedis-tests-net
481+
docker run -p 8474:8474 --network jedis-tests-net -p 29379-29380:29379-29380 --name jedis-tests-toxiproxy -d ${TOXIPROXY_IMAGE}
482+
docker run -p 9379:9379 --network jedis-tests-net -e PORT=9379 --name redis-failover-1 -d ${CLIENT_LIBS_TEST_IMAGE}
483+
docker run -p 9380:9380 --network jedis-tests-net -e PORT=9380 --name redis-failover-2 -d ${CLIENT_LIBS_TEST_IMAGE}
477484

478485
cleanup:
479486
- rm -vf /tmp/redis_cluster_node*.conf 2>/dev/null
480487
- rm -vf /tmp/redis_stable_cluster_node*.conf 2>/dev/null
481488
- rm -vf /tmp/redis_cluster_node*.log 2>/dev/null
482489
- rm -vf /tmp/redis_stable_cluster_node*.log 2>/dev/null
490+
- rm -vf /tmp/redis*.log 2>/dev/null
491+
- rm -vf /tmp/sentinel*.conf 2>/dev/null
483492
- rm dump.rdb appendonly.aof - 2>/dev/null
484493

485-
486494
stop:
487-
kill `cat /tmp/redis1.pid`
488-
kill `cat /tmp/redis2.pid`
489-
kill `cat /tmp/redis3.pid`
490-
kill `cat /tmp/redis4.pid`
491-
kill `cat /tmp/redis5.pid`
492-
kill `cat /tmp/redis6.pid`
493-
kill `cat /tmp/redis7.pid`
494-
kill `cat /tmp/redis8.pid`
495-
kill `cat /tmp/redis9.pid`
496-
kill `cat /tmp/redis10.pid`
497-
kill `cat /tmp/redis11.pid`
498-
kill `cat /tmp/sentinel1.pid`
499-
kill `cat /tmp/sentinel2.pid`
500-
kill `cat /tmp/sentinel3.pid`
501-
kill `cat /tmp/sentinel4.pid`
502-
kill `cat /tmp/sentinel5.pid`
503-
kill `cat /tmp/redis_cluster_node1.pid` || true
504-
kill `cat /tmp/redis_cluster_node2.pid` || true
505-
kill `cat /tmp/redis_cluster_node3.pid` || true
506-
kill `cat /tmp/redis_cluster_node4.pid` || true
507-
kill `cat /tmp/redis_cluster_node5.pid` || true
508-
kill `cat /tmp/redis_stable_cluster_node1.pid`
509-
kill `cat /tmp/redis_stable_cluster_node2.pid`
510-
kill `cat /tmp/redis_stable_cluster_node3.pid`
511-
kill `cat /tmp/redis_uds.pid` || true
495+
@for pidfile in \
496+
/tmp/redis{1..11}.pid \
497+
/tmp/sentinel{1..5}.pid \
498+
/tmp/redis_cluster_node{1..5}.pid \
499+
/tmp/redis_stable_cluster_node{1..3}.pid \
500+
/tmp/redis_uds.pid; do \
501+
if [ -f $$pidfile ]; then \
502+
pid=$$(cat $$pidfile); \
503+
if kill -0 $$pid 2>/dev/null; then \
504+
echo "Stopping process $$pid from $$pidfile"; \
505+
kill $$pid; \
506+
sleep 1; \
507+
if kill -0 $$pid 2>/dev/null; then \
508+
echo "PID $$pid did not exit, forcing kill"; \
509+
kill -9 $$pid; \
510+
fi; \
511+
fi; \
512+
rm -f $$pidfile; \
513+
fi; \
514+
done
512515
[ -f /tmp/redis_unavailable.pid ] && kill `cat /tmp/redis_unavailable.pid` || true
513-
rm -f /tmp/sentinel1.conf
514-
rm -f /tmp/sentinel2.conf
515-
rm -f /tmp/sentinel3.conf
516-
rm -f /tmp/sentinel4.conf
517-
rm -f /tmp/sentinel5.conf
518-
rm -f /tmp/redis_cluster_node1.conf
519-
rm -f /tmp/redis_cluster_node2.conf
520-
rm -f /tmp/redis_cluster_node3.conf
521-
rm -f /tmp/redis_cluster_node4.conf
522-
rm -f /tmp/redis_cluster_node5.conf
523-
rm -f /tmp/redis_stable_cluster_node1.conf
524-
rm -f /tmp/redis_stable_cluster_node2.conf
525-
rm -f /tmp/redis_stable_cluster_node3.conf
526-
docker rm -f jedis-stack
527-
528-
test: | start mvn-test stop
516+
docker rm -f jedis-stack || true
517+
docker rm -f jedis-tests-toxiproxy || true
518+
docker rm -f redis-failover-1 || true
519+
docker rm -f redis-failover-2 || true
520+
docker network rm jedis-tests-net 2>/dev/null || true
521+
522+
test: | start mvn-test-local stop
523+
524+
mvn-test-local:
525+
@TEST_ENV_PROVIDER=local mvn -Dtest=${TEST} clean compile test
529526

530527
mvn-test:
531528
mvn -Dtest=${TEST} clean compile test

0 commit comments

Comments
 (0)