19 lines
		
	
	
	
		
			416 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			416 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| namespace = ENV.fetch('REDIS_NAMESPACE') { nil }
 | |
| redis_params = { url: ENV['REDIS_URL'] }
 | |
| 
 | |
| if namespace
 | |
|   redis_params [:namespace] = namespace
 | |
| end
 | |
| 
 | |
| Sidekiq.configure_server do |config|
 | |
|   config.redis = redis_params
 | |
| end
 | |
| 
 | |
| Sidekiq.configure_client do |config|
 | |
|   config.redis = redis_params
 | |
|   config.client_middleware do |chain|
 | |
|     chain.add Mastodon::UniqueRetryJobMiddleware
 | |
|   end
 | |
| end
 |