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
Issue by Andrwe Saturday Jan 25, 2014 at 12:35 GMT Originally opened as palavatv/palava-machine#4
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:
See palavatv/palava-machine#6
Sorry, something went wrong.
machine is not part of default palava stack anymore. please use machine repo for issues
No branches or pull requests
Issue by Andrwe
Saturday Jan 25, 2014 at 12:35 GMT
Originally opened as palavatv/palava-machine#4
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: