You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When initializing GoFlow with all the necessary configurations, I encountered an issue with passing the Redis client. In the GoFlow struct, there's only an option to provide the RedisClient:
fs := &goflow.FlowService{
RedisURL: redisUrl,
WorkerConcurrency: 5,
}
However, when attempting to include SSL configuration in the Redis URL, I encountered the following error message:
failed to initiate connection, error dial tcp: address .too many colons in address
The sample Redis URL used was: "rediss://" + options.Username + ":" + options.Password + "@" + options.Addr + "/0?ssl_cert_reqs=None"
Further investigation is required to resolve this problem and successfully pass the SSL configuration to the go flow during initialization.
The text was updated successfully, but these errors were encountered:
It's seams when you use go get gets v0.1.4 but they fixed this issue on master v0.1.5
I fixed with removing on go.mod file and re get with @master tag.
Also you must change configuration code you can see below.
When initializing GoFlow with all the necessary configurations, I encountered an issue with passing the Redis client. In the GoFlow struct, there's only an option to provide the RedisClient:
fs := &goflow.FlowService{
RedisURL: redisUrl,
WorkerConcurrency: 5,
}
However, when attempting to include SSL configuration in the Redis URL, I encountered the following error message:
failed to initiate connection, error dial tcp: address .too many colons in address
The sample Redis URL used was: "rediss://" + options.Username + ":" + options.Password + "@" + options.Addr + "/0?ssl_cert_reqs=None"
Further investigation is required to resolve this problem and successfully pass the SSL configuration to the go flow during initialization.
The text was updated successfully, but these errors were encountered: