Typo

Stephen Paul Weber created

Change summary

lib/customer_repo.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

lib/customer_repo.rb 🔗

@@ -76,7 +76,7 @@ class CustomerRepo
 
 	def put_monthly_overage_limit(customer, limit)
 		k = "jmp_customer_monthly_overage_limit-#{customer.customer_id}"
-		@redis.put(k, limit)
+		@redis.set(k, limit)
 	end
 
 protected