We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please answer the following questions for yourself before submitting an issue.
Moleculer does not recognize redis SSL URIs as valid Redis URIs.
Redis SSL URI should be identified as a Redis type discoverer.
Issue can be mitigated using more explicit config:
discoverer: { type: "Redis", options: { redis: "rediss://redis-server:6379" }, },
Start a broket with rediss:// URI as discoverer
rediss://
const broker = new ServiceBroker({ discoverer: "rediss://redis-server:6379" });
Unable to create ServiceBroker. BrokerOptionsError: Invalid Discoverer type 'rediss://redis-server:6379'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Prerequisites
Please answer the following questions for yourself before submitting an issue.
Current Behavior
Moleculer does not recognize redis SSL URIs as valid Redis URIs.
Expected Behavior
Redis SSL URI should be identified as a Redis type discoverer.
Failure Information
Issue can be mitigated using more explicit config:
Steps to Reproduce
Start a broket with
rediss://
URI as discovererReproduce code snippet
Context
Failure Logs
The text was updated successfully, but these errors were encountered: