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
The program trys to connect to Redis even when redis config enable setting to false
false
redis: # redis uri like this: # redis://[:password@]host[:port][/dbnumber] # redis-socket://[:password@]path[?db=dbnumber] # redis-sentinel://[:password@]host1[:port][,host2:[:port]][,hostN:[:port]][?master=masterName] uri: 'redis://127.0.0.1:6379/0' # binlog cache key binlog-pos: mysql_binlog_pos # enable redis enable: false # enable binlog redis service(pkg.cache_service) enable-binlog: false
Log info is:
redis command error: SADD failed: dial tcp 127.0.0.1:6379: connect: connection refused asynq: pid=7497 2022/07/09 10:01:28.467050 ERROR: Dequeue error: UNKNOWN: redis eval error: dial tcp 127.0.0.1:6379: connect: connection refused asynq: pid=7497 2022/07/09 10:01:30.015595 ERROR: cannot subscribe to cancelation channel: UNKNOWN: redis pubsub receive error: dial tcp 127.0.0.1:6379: connect: connection refused
The text was updated successfully, but these errors were encountered:
u should disable delay queue:
gin-web/initialize/cron.go
Line 14 in 57fd390
Sorry, something went wrong.
u should disable delay queue: gin-web/initialize/cron.go Line 14 in 57fd390 qu := delay.NewQueue( because it dependence redis, I will disable it by redis.enable in the future
because it dependence redis, I will disable it by redis.enable in the future
Thanks for reply.
No branches or pull requests
The program trys to connect to Redis even when redis config enable setting to
false
Log info is:
The text was updated successfully, but these errors were encountered: