@@ -38,18 +38,19 @@ jobs:
38
38
- {redis: '5.0', ruby: '2.7'}
39
39
- {ruby: 'jruby'}
40
40
- {ruby: 'truffleruby'}
41
- - {task: test_cluster_state, redis: '7.0', replica: '2', compose: compose.replica.yaml}
42
- - {task: test_cluster_state, redis: '6.2', replica: '2', compose: compose.replica.yaml}
43
- - {task: test_cluster_broken, redis: '7.0', restart: 'no'}
44
- - {task: test_cluster_broken, redis: '6.2', restart: 'no'}
45
- - {task: test_cluster_scale, redis: '7.0', compose: compose.scale.yaml}
46
- - {task: test_cluster_scale, redis: '6.2', compose: compose.scale.yaml}
41
+ - {task: test_cluster_state, redis: '7.0', replica: '2', compose: compose.replica.yaml, startup: '9' }
42
+ - {task: test_cluster_state, redis: '6.2', replica: '2', compose: compose.replica.yaml, startup: '9' }
43
+ - {task: test_cluster_broken, redis: '7.0', restart: 'no', startup: '6' }
44
+ - {task: test_cluster_broken, redis: '6.2', restart: 'no', startup: '6' }
45
+ - {task: test_cluster_scale, redis: '7.0', compose: compose.scale.yaml, startup: '8' }
46
+ - {task: test_cluster_scale, redis: '6.2', compose: compose.scale.yaml, startup: '8' }
47
47
env :
48
48
REDIS_VERSION : ${{ matrix.redis || '7.0' }}
49
49
DOCKER_COMPOSE_FILE : ${{ matrix.compose || 'compose.yaml' }}
50
50
REDIS_CONNECTION_DRIVER : ${{ matrix.driver || 'ruby' }}
51
51
REDIS_REPLICA_SIZE : ${{ matrix.replica || '1' }}
52
52
RESTART_POLICY : ${{ matrix.restart || 'always' }}
53
+ REDIS_CLIENT_MAX_STARTUP_SAMPLE : ${{ matrix.startup || '3' }}
53
54
steps :
54
55
- name : Check out code
55
56
uses : actions/checkout@v3
@@ -247,6 +248,7 @@ jobs:
247
248
DOCKER_COMPOSE_FILE : ' compose.massive.yaml'
248
249
REDIS_SHARD_SIZE : ' 10'
249
250
REDIS_REPLICA_SIZE : ' 2'
251
+ REDIS_CLIENT_MAX_STARTUP_SAMPLE : ' 5'
250
252
steps :
251
253
- name : Check out code
252
254
uses : actions/checkout@v3
0 commit comments