# HG changeset patch # User drewp # Date 1462581294 25200 # Node ID 806d2f633775f95bd6357e2df08e8ae72b393567 # Parent 6ab5238fc049b8c341417378fd526e4a3ff830da don't break GET=/ page when we're in slow-updates debug mode Ignore-this: bf5d1ea38109cbcb9ec44f1559e254a9 darcs-hash:efcba1821da0f5ec47d1dd2470a5ff874f8ed928 diff -r 6ab5238fc049 -r 806d2f633775 service/reasoning/reasoning.py --- a/service/reasoning/reasoning.py Fri May 06 17:34:26 2016 -0700 +++ b/service/reasoning/reasoning.py Fri May 06 17:34:54 2016 -0700 @@ -143,7 +143,7 @@ # make sure GET / fails if our poll loop died ago = time.time() - self.settings.reasoning.lastPollTime - if ago > 2: + if ago > 15: self.set_status(500) self.finish("last poll was %s sec ago. last error: %s" % (ago, self.settings.reasoning.lastError))