File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 45
45
run : |
46
46
cp config/redis/.env.redis ./
47
47
docker compose up -d
48
+ docker ps -a
48
49
- name : Build
49
50
run : |
50
51
npm ci
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export const initMeasurementRedisClient = async () => {
24
24
} ;
25
25
26
26
export const createMeasurementRedisClient = ( options ?: Partial < RedisClusterOptions > ) : RedisClusterInternal => {
27
+ console . log ( 'redis.clusterMeasurements.nodes' , config . get < { [ index : string ] : string } > ( 'redis.clusterMeasurements.nodes' ) ) ;
27
28
return createRedisClusterInternal ( {
28
29
defaults : config . get < RedisClientOptions > ( 'redis.sharedOptions' ) ,
29
30
rootNodes : Object . values ( config . get < { [ index : string ] : string } > ( 'redis.clusterMeasurements.nodes' ) ) . map ( url => ( { url } ) ) ,
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ class DockerManager {
134
134
const containerInfo = containers . find ( c => c . Names . includes ( `/${ name } ` ) ) ;
135
135
136
136
if ( ! containerInfo ) {
137
- logger . warn ( 'Container not found:' ) ;
137
+ logger . warn ( 'Container not found.' , containers ) ;
138
138
return { container : null , state : null } ;
139
139
}
140
140
You can’t perform that action at this time.
0 commit comments