RockteMQ-AI commented on issue #552:
URL:
https://github.com/apache/rocketmq-connect/issues/552#issuecomment-5324827125
**Issue Evaluation**
Category: `bug` | Status: **Confirmed**
The Redis connector's `getRedisUri()` method does not include the password
in the URI when Redis requires authentication. The fix is straightforward —
append `:password@` to the URI before the host.
**Root Cause:** Missing password segment in the Redis URI construction in
`Config.java`.
**Suggested Fix:**
```java
sb.append(":").append(redisPassword).append("@");
```
Additionally, the `redis.replicator.version` may need updating for broader
Redis compatibility.
---
*Automated evaluation by RockteMQ-AI*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]