From 60bf580c5bbee73dcc6edea3fa6ff7262a1b57a7 Mon Sep 17 00:00:00 2001 From: Nick Winter <livelily@gmail.com> Date: Wed, 29 Oct 2014 12:18:00 -0700 Subject: [PATCH] Bumped Handler fetch limit from 300 to 500 to deal with 300+ ThangTypes. It's great. --- server/commons/Handler.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/commons/Handler.coffee b/server/commons/Handler.coffee index d62eaac5a..5cbd3e4d6 100644 --- a/server/commons/Handler.coffee +++ b/server/commons/Handler.coffee @@ -10,7 +10,7 @@ hipchat = require '../hipchat' deltasLib = require '../../app/lib/deltas' PROJECT = {original: 1, name: 1, version: 1, description: 1, slug: 1, kind: 1, created: 1, permissions: 1} -FETCH_LIMIT = 300 +FETCH_LIMIT = 500 module.exports = class Handler # subclasses should override these properties