| IOError[Errno 28] No space left on device | Please include this information in your bug reports!: Python Python 2.3.4: /usr/bin/python Linux lugs-vm 2.6.18-4-xen-686 #1 SMP Thu May 10 03:24:35 UTC 2007 i686 MoinMoin Release 1.3.4 [Revision 1.3.4 release] Sun May 18 07:09:02 2008 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
| /usr/lib/python2.3/site-packages/MoinMoin/request.py in run(self=<MoinMoin.request.RequestModPy instance>) |
| 863 if self.cfg.allow_extended_names: |
| 864 self.page = Page(self, pagename) |
| 865 self.page.send_page(self, count_hit=1) |
| 866 else: |
| 867 # TODO: kill this. Why disable allow extended names? |
| self = <MoinMoin.request.RequestModPy instance>, self.page = <MoinMoin.Page.Page instance>, self.page.send_page = <bound method Page.send_page of <MoinMoin.Page.Page instance>>, count_hit undefined |
| /usr/lib/python2.3/site-packages/MoinMoin/Page.py in send_page(self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestModPy instance>, msg='', **keywords={'count_hit': 1}) |
| 924 # count hit? |
| 925 if keywords.get('count_hit', 0): |
| 926 eventlog.EventLog(request).add(request, 'VIEWPAGE', {'pagename': self.page_name}) |
| 927 |
| 928 # load the text |
| global eventlog = <module 'MoinMoin.logfile.eventlog' from '/usr/l...2.3/site-packages/MoinMoin/logfile/eventlog.pyc'>, eventlog.EventLog = <class MoinMoin.logfile.eventlog.EventLog>, request = <MoinMoin.request.RequestModPy instance>, ).add undefined, self = <MoinMoin.Page.Page instance>, self.page_name = u'FrontPage' |
| /usr/lib/python2.3/site-packages/MoinMoin/logfile/eventlog.py in add(self=<MoinMoin.logfile.eventlog.EventLog instance>, request=<MoinMoin.request.RequestModPy instance>, eventtype='VIEWPAGE', values='pagename=FrontPage&HTTP_USER_AGENT=CCBot%2F1.0+%...ncrawl.org%2Fbot.html%29&REMOTE_ADDR=38.103.63.17', add_http_info=1, mtime_usecs=1211065742393615L) |
| 43 # Encode values in a query string TODO: use more reaable format |
| 44 values = web.makeQueryString(values) |
| 45 self._add(u"%d\t%s\t%s\n" % (mtime_usecs, eventtype, values)) |
| 46 |
| 47 def parser(self, line): |
| self = <MoinMoin.logfile.eventlog.EventLog instance>, self._add = <bound method EventLog._add of <MoinMoin.logfile.eventlog.EventLog instance>>, mtime_usecs = 1211065742393615L, eventtype = 'VIEWPAGE', values = 'pagename=FrontPage&HTTP_USER_AGENT=CCBot%2F1.0+%...ncrawl.org%2Fbot.html%29&REMOTE_ADDR=38.103.63.17' |
| /usr/lib/python2.3/site-packages/MoinMoin/logfile/logfile.py in _add(self=<MoinMoin.logfile.eventlog.EventLog instance>, line=u'1211065742393615\tVIEWPAGE\tpagename=FrontPage&HTT...crawl.org%2Fbot.html%29&REMOTE_ADDR=38.103.63.17\n') |
| 375 """ |
| 376 if line != None: |
| 377 if line[-1] != '\n': |
| 378 line += '\n' |
| 379 self._output.write(line) |
| self = <MoinMoin.logfile.eventlog.EventLog instance>, self._output = <open file '/usr/share/moin/lugswiki/data/event-log', mode 'ab'>, self._output.write = <bound method StreamReaderWriter.write of <open .../share/moin/lugswiki/data/event-log', mode 'ab'>>, line = u'1211065742393615\tVIEWPAGE\tpagename=FrontPage&HTT...crawl.org%2Fbot.html%29&REMOTE_ADDR=38.103.63.17\n' |
| /usr/lib/python2.3/codecs.py in write(self=<open file '/usr/share/moin/lugswiki/data/event-log', mode 'ab'>, data=u'1211065742393615\tVIEWPAGE\tpagename=FrontPage&HTT...crawl.org%2Fbot.html%29&REMOTE_ADDR=38.103.63.17\n') |
| 398 def write(self, data): |
| 399 |
| 400 return self.writer.write(data) |
| 401 |
| 402 def writelines(self, list): |
| self = <open file '/usr/share/moin/lugswiki/data/event-log', mode 'ab'>, self.writer = <open file '/usr/share/moin/lugswiki/data/event-log', mode 'ab'>, self.writer.write = <bound method StreamWriter.write of <open file '.../share/moin/lugswiki/data/event-log', mode 'ab'>>, data = u'1211065742393615\tVIEWPAGE\tpagename=FrontPage&HTT...crawl.org%2Fbot.html%29&REMOTE_ADDR=38.103.63.17\n' |
| /usr/lib/python2.3/codecs.py in write(self=<open file '/usr/share/moin/lugswiki/data/event-log', mode 'ab'>, object=u'1211065742393615\tVIEWPAGE\tpagename=FrontPage&HTT...crawl.org%2Fbot.html%29&REMOTE_ADDR=38.103.63.17\n') |
| 177 """ |
| 178 data, consumed = self.encode(object, self.errors) |
| 179 self.stream.write(data) |
| 180 |
| 181 def writelines(self, list): |
| self = <open file '/usr/share/moin/lugswiki/data/event-log', mode 'ab'>, self.stream = <open file '/usr/share/moin/lugswiki/data/event-log', mode 'ab'>, self.stream.write = <built-in method write of file object>, data = '1211065742393615\tVIEWPAGE\tpagename=FrontPage&HTT...crawl.org%2Fbot.html%29&REMOTE_ADDR=38.103.63.17\n' |
IOError: [Errno 28] No space left on device
__doc__ =
'I/O operation failed.'
__getitem__ =
<bound method IOError.__getitem__ of <exceptions.IOError instance>>
__init__ =
<bound method IOError.__init__ of <exceptions.IOError instance>>
__module__ =
'exceptions'
__str__ =
<bound method IOError.__str__ of <exceptions.IOError instance>>
args =
(28, 'No space left on device')
errno =
28
filename =
None
strerror =
'No space left on device'