This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tim.peters
Recipients
Date 2003-07-13.01:53:27
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=31435

I didn't pay attention to it, but it is an obvious shutdown 
race.  I'll fix it.  Tim Stone (the OP) is a contributor to the 
spambayes project, and it turns out this is damned important 
in spambayes, because it appears the spambayes code never 
calls the dumbdbm.close() method explicitly.  Something else I 
learned from the dumbdbm review is that a dumbdbm's disk 
files routinely get out of synch with each other, and rely on 
someone calling close() or __del__() to get them back in 
synch.  If a .bak file doesn't already exist, though, this 
shutdown race can prevent __del__() from synch'ing the files.

Boosted priority.
History
Date User Action Args
2007-08-23 15:22:20adminlinkissue723231 messages
2007-08-23 15:22:20admincreate