| 413 | void releaseSentinelRedisInstance(sentinelRedisInstance *ri); |
| 414 | |
| 415 | void dictInstancesValDestructor (void *privdata, void *obj) { |
| 416 | UNUSED(privdata); |
| 417 | releaseSentinelRedisInstance((sentinelRedisInstance*)obj); |
| 418 | } |
| 419 | |
| 420 | /* Instance name (sds) -> instance (sentinelRedisInstance pointer) |
| 421 | * |
nothing calls this directly
no test coverage detected