From a8510f64813c8168c2347942667adc939afa2695 Mon Sep 17 00:00:00 2001 From: Amiel Martin Date: Mon, 16 Dec 2019 09:36:37 -0900 Subject: [PATCH] Raise max objects-per-juggler to 7 This resolves #3 --- lib/app.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app.rb b/lib/app.rb index 97c0689..a45e7c4 100644 --- a/lib/app.rb +++ b/lib/app.rb @@ -7,7 +7,7 @@ $cache = ($redis ? AppCache.new($redis) : AppCache.new(Redis.new)) MIN_OBJECTS = 1 -MAX_OBJECTS_PER_PERSON = 5 +MAX_OBJECTS_PER_PERSON = 7 class App