classification
Title: Transient error in multiprocessing
Type: behavior Stage: test needed
Components: Library (Lib), Tests Versions: Python 3.2, Python 3.1
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: jnoller Nosy List: flox, jnoller, pitrou (3)
Priority: normal Keywords buildbot

Created on 2009-05-04 21:33 by pitrou, last changed 2010-03-04 18:20 by flox.

Messages (5)
msg87182 - (view) Author: Antoine Pitrou (pitrou) Date: 2009-05-04 21:33
Just got this on py3k, I can't reproduce unfortunately.

test test_multiprocessing failed -- Traceback (most recent call last):
  File "/home/antoine/py3k/__svn__/Lib/test/test_multiprocessing.py",
line 1070, in test_number_of_objects
    self.assertEqual(refs, EXPECTED_NUMBER)
AssertionError: 10 != 1
msg87183 - (view) Author: Jesse Noller (jnoller) * Date: 2009-05-04 21:35
there's not much I can do without the ability to reproduce it :(
msg99101 - (view) Author: Florent Xicluna (flox) * Date: 2010-02-09 10:17
Closed duplicate reports #6366 and #6747.
msg99582 - (view) Author: Florent Xicluna (flox) * Date: 2010-02-19 16:43
Again, but with more details:
http://www.python.org/dev/buildbot/all/builders/i386%20Ubuntu%203.1/builds/302

test_multiprocessing
Process Process-49:
Traceback (most recent call last):
  File "/scratch/pybot-buildarea/3.1.klose-ubuntu-i386/build/Lib/multiprocessing/process.py", line 233, in _bootstrap
    self.run()
  File "/scratch/pybot-buildarea/3.1.klose-ubuntu-i386/build/Lib/multiprocessing/process.py", line 88, in run
    self._target(*self._args, **self._kwargs)
  File "/scratch/pybot-buildarea/3.1.klose-ubuntu-i386/build/Lib/test/test_multiprocessing.py", line 616, in f
    woken.release()
  File "/scratch/pybot-buildarea/3.1.klose-ubuntu-i386/build/Lib/multiprocessing/managers.py", line 962, in release
    return self._callmethod('release')
  File "/scratch/pybot-buildarea/3.1.klose-ubuntu-i386/build/Lib/multiprocessing/managers.py", line 750, in _callmethod
    raise convert_to_error(kind, result)
multiprocessing.managers.RemoteError: 
---------------------------------------------------------------------------
Traceback (most recent call last):
  File "/scratch/pybot-buildarea/3.1.klose-ubuntu-i386/build/Lib/multiprocessing/managers.py", line 219, in serve_client
    obj, exposed, gettypeid = id_to_obj[ident]
KeyError: 'cc9dc3c'
---------------------------------------------------------------------------
test test_multiprocessing failed -- Traceback (most recent call last):
  File "/scratch/pybot-buildarea/3.1.klose-ubuntu-i386/build/Lib/test/test_multiprocessing.py", line 1077, in test_number_of_objects
    self.assertEqual(refs, EXPECTED_NUMBER)
AssertionError: 9 != 1
msg100405 - (view) Author: Florent Xicluna (flox) * Date: 2010-03-04 18:20
It might be related to #7805. Let see if it happens again.
History
Date User Action Args
2010-03-04 18:20:23floxsetmessages: + msg100405
2010-02-19 16:43:44floxsetkeywords: + buildbot

messages: + msg99582
2010-02-09 10:17:48floxsetnosy: + flox
messages: + msg99101
2010-02-08 20:01:15floxsetversions: + Python 3.2
components: + Tests
stage: needs patch -> test needed
2010-02-08 19:59:32floxlinkissue6747 superseder
2010-02-08 19:56:33floxlinkissue6366 superseder
2009-05-04 21:35:14jnollersetmessages: + msg87183
2009-05-04 21:33:23pitroucreate