From ae3ca48613a32cb1f619750e8166c98252955eaa Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 19 Feb 2014 20:30:04 +0000 Subject: [PATCH] * reduce movie index sanity --- BuildData.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildData.groovy b/BuildData.groovy index d14cb1a0..bae90082 100644 --- a/BuildData.groovy +++ b/BuildData.groovy @@ -151,7 +151,7 @@ movies = tmdb.findResults{ movies = treeSort(movies, { it[3, 2].join(' ') }) // sanity check -if (movies.size() < 50000) { throw new Exception('Movie index sanity failed') } +if (movies.size() < 40000) { throw new Exception('Movie index sanity failed') } pack(moviedb_out, movies*.join('\t'))