Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-17 Thread Shane Hathaway
Tim Cook wrote:
> Tests with failures:
>/home/tim/ZODB3/ZODB3-3.9.0b1/src/ZEO/scripts/zeopack.test
>check7ZODBThreads
> (ZODB.tests.testMVCCMappingStorage.MVCCMappingStorageTests)
> Total: 3691 tests, 2 failures, 0 errors in 17 minutes 13.990 seconds.

FWIW, I just fixed both of those failures on the trunk.  They only 
indicate problems in the test suite, not in ZODB, so you can safely 
ignore them.

Shane

___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-17 Thread Tim Cook
On Mon, 2009-05-04 at 15:03 -0400, Jim Fulton wrote:
> I've just released the first beta of ZODB 3.9.
> 
> http://pypi.python.org/pypi/ZODB3/3.9.0b1
> 
> 3.9 features are now frozen.  I'd prefer to keep new features off of  
> the trunk for a while to reduce the amount of merging work I have to  
> do. :)
> 
> Please try this out and report bugs found.

Hardware: HP Pavillion AMD Turion64 
OS: Ubuntu Jaunty  w/ all latest updates

Test Failures:

/home/tim/ZODB3 is a virtualenv --no-site-packages


./usr/lib/python2.5/unittest.py:320: UnicodeWarning: Unicode equal
comparison failed to convert both arguments to Unicode - interpreting
them as being unequal
  callableObj(*args, **kwargs)
.

Failure in
test /home/tim/ZODB3/ZODB3-3.9.0b1/src/ZEO/scripts/zeopack.test
Failed doctest test for zeopack.test
  File "/home/tim/ZODB3/ZODB3-3.9.0b1/src/ZEO/scripts/zeopack.test",
line 0

--
File "/home/tim/ZODB3/ZODB3-3.9.0b1/src/ZEO/scripts/zeopack.test", line
88, in zeopack.test
Failed example:
main(["host1:8100", "host1:8100:2"])
Expected:
ClientStorage(('host1', 8100), read_only=1, storage='1', wait=False)
is_connected True
pack(644117.0, wait=True)
close()
ClientStorage(('host1', 8100), read_only=1, storage='2', wait=False)
is_connected True
pack(644117.0, wait=True)
close()
Got:
ClientStorage(('host1', 8100), read_only=1, storage='1', wait=False)
is_connected True
pack(647717.0, wait=True)
close()
ClientStorage(('host1', 8100), read_only=1, storage='2', wait=False)
is_connected True
pack(647717.0, wait=True)
close()
--
File "/home/tim/ZODB3/ZODB3-3.9.0b1/src/ZEO/scripts/zeopack.test", line
100, in zeopack.test
Failed example:
main(["-ufoo", "-ubar:spam", "host1:8100", "host1:8100:2"])
Expected:
ClientStorage(('host1', 8100), read_only=1, storage='1', wait=False)
is_connected True
pack(644117.0, wait=True)
close()
ClientStorage(('host1', 8100), read_only=1, storage='2', wait=False)
is_connected True
pack(644117.0, wait=True)
close()
ClientStorage('foo', read_only=1, storage='1', wait=False)
is_connected True
pack(644117.0, wait=True)
close()
ClientStorage('bar', read_only=1, storage='spam', wait=False)
is_connected True
pack(644117.0, wait=True)
close()
Got:
ClientStorage(('host1', 8100), read_only=1, storage='1', wait=False)
is_connected True
pack(647717.0, wait=True)
close()
ClientStorage(('host1', 8100), read_only=1, storage='2', wait=False)
is_connected True
pack(647717.0, wait=True)
close()
ClientStorage('foo', read_only=1, storage='1', wait=False)
is_connected True
pack(647717.0, wait=True)
close()
ClientStorage('bar', read_only=1, storage='spam', wait=False)
is_connected True
pack(647717.0, wait=True)
close()
--
File "/home/tim/ZODB3/ZODB3-3.9.0b1/src/ZEO/scripts/zeopack.test", line
121, in zeopack.test
Failed example:
main(["-ufoo", "-ubar:spam", "-d3", "host1:8100", "host1:8100:2"])
Expected:
ClientStorage(('host1', 8100), read_only=1, storage='1', wait=False)
is_connected True
pack(384917.0, wait=True)
close()
ClientStorage(('host1', 8100), read_only=1, storage='2', wait=False)
is_connected True
pack(384917.0, wait=True)
close()
ClientStorage('foo', read_only=1, storage='1', wait=False)
is_connected True
pack(384917.0, wait=True)
close()
ClientStorage('bar', read_only=1, storage='spam', wait=False)
is_connected True
pack(384917.0, wait=True)
close()
Got:
ClientStorage(('host1', 8100), read_only=1, storage='1', wait=False)
is_connected True
pack(388517.0, wait=True)
close()
ClientStorage(('host1', 8100), read_only=1, storage='2', wait=False)
is_connected True
pack(388517.0, wait=True)
close()
ClientStorage('foo', read_only=1, storage='1', wait=False)
is_connected True
pack(388517.0, wait=True)
close()
ClientStorage('bar', read_only=1, storage='spam', wait=False)
is_connected True
pack(388517.0, wait=True)
close()
--
File "/home/tim/ZODB3/ZODB3-3.9.0b1/src/ZEO/scripts/zeopack.test", line
209, in zeopack.test
Failed example:
main(["-d3", "-h", "host1", "-p", "8100", "-S", "2"])
Expected:
ClientStorage(('host1', 8100), read_only=1, storage='2', wait=False)
is_connected True
pack(384917.0, wait=True)
close()
Got:
ClientStorage(('host1', 8100), read_only=1, storage='2', wait=False)
is_connected True
pack(388517.0, wait=True)
close()
--

Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-15 Thread Tim Cook
On Fri, 2009-05-15 at 05:48 -0400, Jim Fulton wrote:

> 
> Hooks to support RelStorage were included.  Lack of mention of these  
> hooks is a documentation bug.

Thanks Jim.  I did some initial testing (w/o RelStorage) with Grok1.0a3
on Linux x86_64 and have entered three bug reports on Launchpad.

Cheers,
Tim


-- 
Timothy Cook, MSc
Health Informatics Research & Development Services
LinkedIn Profile:http://www.linkedin.com/in/timothywaynecook 
Skype ID == timothy.cook 
**
*You may get my Public GPG key from  popular keyservers or   *
*from this link http://timothywayne.cook.googlepages.com/home*
**


signature.asc
Description: This is a digitally signed message part
___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-15 Thread Jim Fulton

On May 14, 2009, at 6:13 PM, Tim Cook wrote:

> On Mon, 2009-05-04 at 15:03 -0400, Jim Fulton wrote:
>> I've just released the first beta of ZODB 3.9.
>>
>> http://pypi.python.org/pypi/ZODB3/3.9.0b1
>>
>> 3.9 features are now frozen.  I'd prefer to keep new features off of
>> the trunk for a while to reduce the amount of merging work I have to
>> do. :)
>
> Looking through the Change history I don't see any mention of
> RelStorage.  Was that dropped for 3.9?


Hooks to support RelStorage were included.  Lack of mention of these  
hooks is a documentation bug.

Jim

--
Jim Fulton
Zope Corporation


___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-14 Thread Tim Cook
On Mon, 2009-05-04 at 15:03 -0400, Jim Fulton wrote:
> I've just released the first beta of ZODB 3.9.
> 
> http://pypi.python.org/pypi/ZODB3/3.9.0b1
> 
> 3.9 features are now frozen.  I'd prefer to keep new features off of  
> the trunk for a while to reduce the amount of merging work I have to  
> do. :)

Looking through the Change history I don't see any mention of
RelStorage.  Was that dropped for 3.9?

Thanks,
Tim




-- 
Timothy Cook, MSc
Health Informatics Research & Development Services
LinkedIn Profile:http://www.linkedin.com/in/timothywaynecook 
Skype ID == timothy.cook 
**
*You may get my Public GPG key from  popular keyservers or   *
*from this link http://timothywayne.cook.googlepages.com/home*
**


signature.asc
Description: This is a digitally signed message part
___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-05 Thread Andreas Jung
I fixed this problem in Zope 2 and released Zope 2.12.0b1
with ZODB 3.9.0b1 today.

Andreas

On 04.05.09 21:23, Jim Fulton wrote:
>
> On May 4, 2009, at 3:09 PM, Andreas Jung wrote:
>
>> On 04.05.09 21:03, Jim Fulton wrote:
>>> I've just released the first beta of ZODB 3.9.
>>>
>>> http://pypi.python.org/pypi/ZODB3/3.9.0b1
>>>
>>> 3.9 features are now frozen.  I'd prefer to keep new features off of
>>> the trunk for a while to reduce the amount of merging work I have to
>>> do. :)
>>>
>>> Please try this out and report bugs found.
>>
>> Getting this under Zope 2.12.0/trunk + Python 2.6:
>>
>> Error in test testWrite
>> (Products.ZODBMountPoint.tests.testMountPoint.MountingTests)
>> Traceback (most recent call last):
>>  File "/opt/python-2.6.1/lib/python2.6/unittest.py", line 270, in run
>>self.setUp()
>>  File
>> "/Users/ajung/sandboxes/Zope/trunk/src/Products/ZODBMountPoint/tests/testMountPoint.py",
>>
>> line 99, in setUp
>>db = conf.getDatabase('/')
>>  File
>> "/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py", line
>> 287, in getDatabase
>>db = factory.open(name, self.databases)
>>  File
>> "/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py", line
>> 185, in open
>>DB = self.createDB(database_name, databases)
>>  File
>> "/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py", line
>> 182, in createDB
>>return ZODBDatabase.open(self, databases)
>>  File
>> "/Users/ajung/.buildout/eggs/ZODB3-3.9.0b1-py2.6-macosx-10.3-i386.egg/ZODB/config.py",
>>
>> line 112, in open
>>_option('allow_implicit_cross_references', 'xrefs')
>>  File
>> "/Users/ajung/.buildout/eggs/ZODB3-3.9.0b1-py2.6-macosx-10.3-i386.egg/ZODB/config.py",
>>
>> line 105, in _option
>>v = getattr(section, name)
>> AttributeError: TestDBConfig instance has no attribute
>> 'allow_implicit_cross_references'
>
>
>
> This is a Zope 2 issue.  The ZConfig schema for ZODB has changed.  The
> Zope 2 TestDBConfig class needs to be updated.
>
> Jim
>
> -- 
> Jim Fulton
> Zope Corporation
>
>


-- 
ZOPYX Ltd. & Co. KG - Charlottenstr. 37/1 - 72070 Tübingen - Germany
Web: www.zopyx.com - Email: i...@zopyx.com - Phone +49 - 7071 - 793376
Registergericht: Amtsgericht Stuttgart, Handelsregister A 381535
Geschäftsführer/Gesellschafter: ZOPYX Limited, Birmingham, UK

E-Publishing, Python, Zope & Plone development, Consulting


begin:vcard
fn:Andreas Jung
n:Jung;Andreas
org:ZOPYX Ltd. & Co. KG
adr;quoted-printable:;;Charlottenstr. 37/1;T=C3=BCbingen;;72070;Germany
email;internet:i...@zopyx.com
title:CEO
tel;work:+49-7071-793376
tel;fax:+49-7071-7936840
tel;home:+49-7071-793257
x-mozilla-html:FALSE
url:www.zopyx.com
version:2.1
end:vcard

___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-05 Thread Jim Fulton

On May 5, 2009, at 9:26 AM, Hanno Schlichting wrote:

> Jim Fulton wrote:
>> I've just released the first beta of ZODB 3.9.
>
> Awesome :)
>
> I thought there were some outstanding issues with the "cache-size- 
> bytes"
> functionality. Got all of these resolved / reviewed by now?

There's an intermittent test failure that I need to work on. I didn't  
think that was enough to hold up the beta.

Jim

--
Jim Fulton
Zope Corporation


___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-05 Thread Hanno Schlichting
Jim Fulton wrote:
> I've just released the first beta of ZODB 3.9.

Awesome :)

I thought there were some outstanding issues with the "cache-size-bytes"
functionality. Got all of these resolved / reviewed by now?

Thanks,
Hanno

___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-04 Thread Jim Fulton

On May 4, 2009, at 3:09 PM, Andreas Jung wrote:

> On 04.05.09 21:03, Jim Fulton wrote:
>> I've just released the first beta of ZODB 3.9.
>>
>> http://pypi.python.org/pypi/ZODB3/3.9.0b1
>>
>> 3.9 features are now frozen.  I'd prefer to keep new features off of
>> the trunk for a while to reduce the amount of merging work I have to
>> do. :)
>>
>> Please try this out and report bugs found.
>
> Getting this under Zope 2.12.0/trunk + Python 2.6:
>
> Error in test testWrite
> (Products.ZODBMountPoint.tests.testMountPoint.MountingTests)
> Traceback (most recent call last):
>  File "/opt/python-2.6.1/lib/python2.6/unittest.py", line 270, in run
>self.setUp()
>  File
> "/Users/ajung/sandboxes/Zope/trunk/src/Products/ZODBMountPoint/tests/ 
> testMountPoint.py",
> line 99, in setUp
>db = conf.getDatabase('/')
>  File
> "/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py",  
> line
> 287, in getDatabase
>db = factory.open(name, self.databases)
>  File
> "/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py",  
> line
> 185, in open
>DB = self.createDB(database_name, databases)
>  File
> "/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py",  
> line
> 182, in createDB
>return ZODBDatabase.open(self, databases)
>  File
> "/Users/ajung/.buildout/eggs/ZODB3-3.9.0b1-py2.6-macosx-10.3- 
> i386.egg/ZODB/config.py",
> line 112, in open
>_option('allow_implicit_cross_references', 'xrefs')
>  File
> "/Users/ajung/.buildout/eggs/ZODB3-3.9.0b1-py2.6-macosx-10.3- 
> i386.egg/ZODB/config.py",
> line 105, in _option
>v = getattr(section, name)
> AttributeError: TestDBConfig instance has no attribute
> 'allow_implicit_cross_references'



This is a Zope 2 issue.  The ZConfig schema for ZODB has changed.  The  
Zope 2 TestDBConfig class needs to be updated.

Jim

--
Jim Fulton
Zope Corporation


___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-04 Thread Jim Fulton

On May 4, 2009, at 3:13 PM, Benji York wrote:

> On Mon, May 4, 2009 at 3:03 PM, Jim Fulton  wrote:
>>
>> I've just released the first beta of ZODB 3.9.
>
>> Please try this out and report bugs found.
>
> Is the fact that http://pypi.python.org/pypi/ZODB3/3.9.0b1#compatibility
> mentions "ZODB 3.8" and not 3.9 a bug?

Yes. I didn't know that was there. :(

Jim

--
Jim Fulton
Zope Corporation


___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-04 Thread Benji York
On Mon, May 4, 2009 at 3:03 PM, Jim Fulton  wrote:
>
> I've just released the first beta of ZODB 3.9.

> Please try this out and report bugs found.

Is the fact that http://pypi.python.org/pypi/ZODB3/3.9.0b1#compatibility
mentions "ZODB 3.8" and not 3.9 a bug?
-- 
Benji York
Senior Software Engineer
Zope Corporation
___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


Re: [ZODB-Dev] ZODB 3.9.0b1 released

2009-05-04 Thread Andreas Jung
On 04.05.09 21:03, Jim Fulton wrote:
> I've just released the first beta of ZODB 3.9.
>
> http://pypi.python.org/pypi/ZODB3/3.9.0b1
>
> 3.9 features are now frozen.  I'd prefer to keep new features off of  
> the trunk for a while to reduce the amount of merging work I have to  
> do. :)
>
> Please try this out and report bugs found.

Getting this under Zope 2.12.0/trunk + Python 2.6:

Error in test testWrite
(Products.ZODBMountPoint.tests.testMountPoint.MountingTests)
Traceback (most recent call last):
  File "/opt/python-2.6.1/lib/python2.6/unittest.py", line 270, in run
self.setUp()
  File
"/Users/ajung/sandboxes/Zope/trunk/src/Products/ZODBMountPoint/tests/testMountPoint.py",
line 99, in setUp
db = conf.getDatabase('/')
  File
"/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py", line
287, in getDatabase
db = factory.open(name, self.databases)
  File
"/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py", line
185, in open
DB = self.createDB(database_name, databases)
  File
"/Users/ajung/sandboxes/Zope/trunk/src/Zope2/Startup/datatypes.py", line
182, in createDB
return ZODBDatabase.open(self, databases)
  File
"/Users/ajung/.buildout/eggs/ZODB3-3.9.0b1-py2.6-macosx-10.3-i386.egg/ZODB/config.py",
line 112, in open
_option('allow_implicit_cross_references', 'xrefs')
  File
"/Users/ajung/.buildout/eggs/ZODB3-3.9.0b1-py2.6-macosx-10.3-i386.egg/ZODB/config.py",
line 105, in _option
v = getattr(section, name)
AttributeError: TestDBConfig instance has no attribute
'allow_implicit_cross_references'

Andreas
begin:vcard
fn:Andreas Jung
n:Jung;Andreas
org:ZOPYX Ltd. & Co. KG
adr;quoted-printable:;;Charlottenstr. 37/1;T=C3=BCbingen;;72070;Germany
email;internet:i...@zopyx.com
title:CEO
tel;work:+49-7071-793376
tel;fax:+49-7071-7936840
tel;home:+49-7071-793257
x-mozilla-html:FALSE
url:www.zopyx.com
version:2.1
end:vcard

___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev


[ZODB-Dev] ZODB 3.9.0b1 released

2009-05-04 Thread Jim Fulton

I've just released the first beta of ZODB 3.9.

http://pypi.python.org/pypi/ZODB3/3.9.0b1

3.9 features are now frozen.  I'd prefer to keep new features off of  
the trunk for a while to reduce the amount of merging work I have to  
do. :)

Please try this out and report bugs found.

Jim

--
Jim Fulton
Zope Corporation


___
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev