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 totycro
Recipients totycro
Date 2012-02-17.15:31:23
SpamBayes Score 2.738192e-05
Marked as misclassified No
Message-id <1329492684.4.0.589795973037.issue14041@psf.upfronthosting.co.za>
In-reply-to
Content
The attached file data.db should be a valid bsddb file, still i get this crash on write:

 File "/usr/lib64/python2.7/bsddb/__init__.py", line 280, in wrapF
    self.db[key] = value
 DBRunRecoveryError: (-30974, 'DB_RUNRECOVERY: Fatal error, run database recovery -- PANIC: Invalid argument')

Full traceback: http://pastebin.com/A1VSPV9Q

I can reproduce the crash with python 2.7.2 with just these lines (it doesn't crash on empty db files):


import shelve
a = shelve.open("data.db")

b="crashin.."*20000

a['content/scenarios/tutorial_da.yaml'] = b
a['content/scenarios/tutorial_cs.yaml'] = b
History
Date User Action Args
2012-02-17 15:31:24totycrosetrecipients: + totycro
2012-02-17 15:31:24totycrosetmessageid: <1329492684.4.0.589795973037.issue14041@psf.upfronthosting.co.za>
2012-02-17 15:31:23totycrolinkissue14041 messages
2012-02-17 15:31:23totycrocreate