From bde9816a8eb737216fdaa7f2911f77281c6810db Mon Sep 17 00:00:00 2001 From: Cameron Date: Fri, 19 Apr 2013 01:52:01 -0700 Subject: [PATCH] Slow down attachment migration to 50 per second. --- e107_plugins/forum/forum_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_plugins/forum/forum_update.php b/e107_plugins/forum/forum_update.php index 7319a6aaf..54dcf2278 100644 --- a/e107_plugins/forum/forum_update.php +++ b/e107_plugins/forum/forum_update.php @@ -1153,7 +1153,7 @@ function step10_ajax()//TODO $qry = " SELECT post_id, post_thread, post_entry, post_user FROM `#forum_post` WHERE post_entry REGEXP '_[[:digit:]]+_FT' - AND post_id > {$lastPost} LIMIT 200 + AND post_id > {$lastPost} LIMIT 50 "; if ($sql->gen($qry))