[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2009-11-05 Thread R. David Murray
Changes by R. David Murray : -- keywords: -buildbot ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2009-10-30 Thread R. David Murray
Changes by R. David Murray : -- keywords: +buildbot ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2009-01-27 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I've investigated more. I think this is timeout problem. According to following site, http://www.oracle.com/technology/documentation/berkeley- db/db/api_c/rep_timeout.html timeout should be specified in microseconds. This means self.dbenvMaster.rep_set_ti

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-27 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: I reproduce the test failure very consistently, on both win2k and winXP, and may be of some help to test stuff. -- nosy: +amaury.forgeotdarc ___ Python tracker <[EMAIL PROTECTED]>

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-26 Thread Jesús Cea Avión
Jesús Cea Avión <[EMAIL PROTECTED]> added the comment: I need some MS Windows user able to replicate this issue locally (not in the buildbot). Oracle people need to do some test and I would like to avoid to mess with builtbots. Please, help!. ___ Python track

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-26 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> normal ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-25 Thread Jesús Cea Avión
Jesús Cea Avión <[EMAIL PROTECTED]> added the comment: Oracle guys are studying this issue. I will keep you informed. This issue is not a release blocker, in any case. See rational in msg73370. ___ Python tracker <[EMAIL PROTECTED]>

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-19 Thread Mark Hammond
Mark Hammond <[EMAIL PROTECTED]> added the comment: Actually, I've decided to leave it alone. The buildbots most recent failure was: test test_bsddb3 failed -- Traceback (most recent call last): File "S:\buildbots\python\trunk.nelson-windows\build\lib\bsddb\test\test_replication.py", line 315

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-18 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: just make a similar "fix" for now. ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-18 Thread Mark Hammond
Mark Hammond <[EMAIL PROTECTED]> added the comment: We are seeing one more error almost identical to the one I fixed (even the method name is the same), but its at line 315 - this is the last error in the Windows buildbot! Please let me know if you would like me to make a similar "fix" to this l

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-18 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: I've tried this issue on VC6 + db4.7.25.0 + win2k, and I could reproduce error. I added following patch for investigation. Index: Lib/bsddb/test/test_replication.py === --- L

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-18 Thread Jesús Cea Avión
Jesús Cea Avión <[EMAIL PROTECTED]> added the comment: ¿Somebody can try this issue in a Windows box?. It could be a Berkeley DB bug in that platform, but I would like to verify this before informing Oracle. Thanks. ___ Python tracker <[EMAIL PROTECTED]>

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-18 Thread Jesús Cea Avión
Jesús Cea Avión <[EMAIL PROTECTED]> added the comment: Adding Nelson to the nosy list, since I'm unable to debug any Windows issue by myself. I'm very interested in the report saying that MS Windows Berkeley DB correctly sends the db.DB_EVENT_REP_STARTUPDONE event in his setup. That could indica

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-17 Thread Barry A. Warsaw
Changes by Barry A. Warsaw <[EMAIL PROTECTED]>: -- priority: deferred blocker -> release blocker ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-17 Thread Mark Hammond
Mark Hammond <[EMAIL PROTECTED]> added the comment: As discussed with Barry on #python-dev, I committed r66498 which skips the failing assertion on Windows and replaces it with some noise to stderr. Note that only that one assertion fails - the rest of the test passes on Windows. Also, Brett Ca

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-17 Thread Mark Hammond
Mark Hammond <[EMAIL PROTECTED]> added the comment: I instrumented the code a little. The error is happening because self.client_startupdone never gets set to True. This is supposed to be set in the client_startupdone() method. It expects an event type of db.DB_EVENT_REP_STARTUPDONE, but we se

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-17 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: We're going to disable this test for 2.6rc2. Please jcea and gregory.p.smith, take a look at it for 2.6 final. I've made it a deferred blocker for that release. -- nosy: +barry priority: -> deferred blocker __

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-17 Thread Barry A. Warsaw
Changes by Barry A. Warsaw <[EMAIL PROTECTED]>: -- nosy: +gregory.p.smith ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-lis

[issue3892] bsddb: test01_basic_replication fails on Windows sometimes

2008-09-17 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: This happens on the Windows buildbot everything once and a while [1]: == FAIL: test01_basic_replication (bsddb.test.test_replication.DBReplicationManager) --