You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2007/02/12 18:56:18 UTC

svn commit: r506554 - /spamassassin/trunk/masses/tenpass/split-log-into-buckets-cached

Author: jm
Date: Mon Feb 12 09:56:18 2007
New Revision: 506554

URL: http://svn.apache.org/viewvc?view=rev&rev=506554
Log:
turn off caching

Modified:
    spamassassin/trunk/masses/tenpass/split-log-into-buckets-cached

Modified: spamassassin/trunk/masses/tenpass/split-log-into-buckets-cached
URL: http://svn.apache.org/viewvc/spamassassin/trunk/masses/tenpass/split-log-into-buckets-cached?view=diff&rev=506554&r1=506553&r2=506554
==============================================================================
--- spamassassin/trunk/masses/tenpass/split-log-into-buckets-cached (original)
+++ spamassassin/trunk/masses/tenpass/split-log-into-buckets-cached Mon Feb 12 09:56:18 2007
@@ -58,7 +58,8 @@
 
 open (IN, "<$input") or die "cannot open $input";
 while (<IN>) {
-  select $buckets{1+int(rand()*$numbuckets)}; print $_;
+  select $buckets{1+int(rand()*$numbuckets)}; $| = 1;
+  print $_;
 }
 close IN;