src/rrd_daemon.c: Don't return TRUE in `tree_callback_flush'.
[rrdtool.git] / src / rrd_daemon.c
index 87ac8e9..feb1ce3 100644 (file)
@@ -299,7 +299,7 @@ static gboolean tree_callback_flush (gpointer key /* {{{ */
       && (ci->values_num > 0))
     enqueue_cache_item (ci, TAIL);
 
-  return (TRUE);
+  return (FALSE);
 } /* }}} gboolean tree_callback_flush */
 
 static void *queue_thread_main (void *args __attribute__((unused))) /* {{{ */