Fix the circle builds (#20)

This commit is contained in:
Sojan Jose
2019-08-25 20:12:18 -07:00
committed by Pranav Raj S
parent bd7bd63aae
commit 5697b81d78
6 changed files with 25 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
require "redis"
#for reports
redis = Redis.new(url: ENV['REDIS_URL'])
#TODO fix the redis config
uri = URI.parse("redis://localhost:6379")
redis = Redis.new(:url => uri)
Nightfury.redis = Redis::Namespace.new("reports", redis: redis)
=begin