From 97725776b706007ce331f7e825da68d49a7f6dd2 Mon Sep 17 00:00:00 2001
From: Alex Barth <alex_b@53995.no-reply.drupal.org>
Date: Sat, 27 Feb 2010 03:20:25 +0000
Subject: [PATCH] Fix a typo in the return value of process() in
 FeedsTermProcessor.

---
 CHANGELOG.txt                  | 1 +
 plugins/FeedsTermProcessor.inc | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 8f0ba1c7..4036ac5a 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -4,6 +4,7 @@
 Feeds 6.x 1.0 xxxxx xx, 2010-xx-xx
 ----------------------------------
 
+- alex_b: Fix a typo in the return value of process() in FeedsTermProcessor.
 - alex_b: Stop PubSubHubbub from subscribing if it is not enabled.
 - #711664 neclimdul: guarantee compatibility with CTools 1.4  by declaring that
   Feeds uses hooks to define plugins via hook_ctools_plugin_plugins().
diff --git a/plugins/FeedsTermProcessor.inc b/plugins/FeedsTermProcessor.inc
index 5c7bfe36..8aa33d3d 100644
--- a/plugins/FeedsTermProcessor.inc
+++ b/plugins/FeedsTermProcessor.inc
@@ -70,7 +70,7 @@ class FeedsTermProcessor extends FeedsProcessor {
       drupal_set_message(t('There are no new terms.'));
     }
 
-    return FEEDS_NODE_BATCH_SIZE;
+    return FEEDS_BATCH_COMPLETE;
   }
 
   /**
-- 
GitLab