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
Hi,
in jobs/export_stats_job.rb you define initialize() with two parameters "redis_address" and "mongo_address" which can be given via command line.
But you don't use redis_address to start the redis-connection. Instead you use hardcoded localhost:6379.
Thus you can't change the redis-server configuration withour losing the stats-mechanism.
The call should be changed to something like: EM::Hiredis.connect "redis://#{@redis_address}/#{@redis_db}" (used in manager.rb)
Regards, Andrwe
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
in jobs/export_stats_job.rb you define initialize() with two parameters "redis_address" and "mongo_address" which can be given via command line.
But you don't use redis_address to start the redis-connection.
Instead you use hardcoded localhost:6379.
Thus you can't change the redis-server configuration withour losing the stats-mechanism.
The call should be changed to something like:
EM::Hiredis.connect "redis://#{@redis_address}/#{@redis_db}" (used in manager.rb)
Regards,
Andrwe
The text was updated successfully, but these errors were encountered: