2016-11-07 23:20:52 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								host = ENV.fetch('REDIS_HOST') { 'localhost' }
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								port = ENV.fetch('REDIS_PORT') { 6379 }
							 | 
						
					
						
							
								
									
										
										
										
											2017-01-17 22:00:03 +11:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								password = ENV.fetch('REDIS_PASSWORD') { false }
							 | 
						
					
						
							
								
									
										
										
										
											2016-03-25 02:50:48 +01:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								Sidekiq.configure_server do |config|
							 | 
						
					
						
							
								
									
										
										
										
											2017-01-17 22:00:03 +11:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  config.redis = { host: host, port: port, password: password}
							 | 
						
					
						
							
								
									
										
										
										
											2016-03-25 02:50:48 +01:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								end
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								Sidekiq.configure_client do |config|
							 | 
						
					
						
							
								
									
										
										
										
											2017-01-17 22:00:03 +11:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  config.redis = { host: host, port: port, password: password }
							 | 
						
					
						
							
								
									
										
										
										
											2016-03-25 02:50:48 +01:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								end
							 |