- 05 Sep, 2008 13 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
-
Jim Fulton authored
with the data in a way that prevents data from being loaded into the cache. We don't yet know why, but added an exception handler to prevent this error from being fatal.
-
Jim Fulton authored
-
Jim Fulton authored
an out-of-date server.
-
Jim Fulton authored
-
Jim Fulton authored
servers that serve ZEO clients (use ZEO clients as their storages) to be delayed.
-
Jim Fulton authored
of a Python disctionary for a mapping that can grow large. (Not large enough to use a lot of memory, but large enough to cause malloc to fail. :()
-
Jim Fulton authored
for objects that were explicitly added to a database if the object was modified after a savepoint that added the object. M src/ZEO/tests/InvalidationTests.py Fixed spurious scary intermittent test failure.
-
Jim Fulton authored
invalidation messages are recived after the cache is closed.
-
Jim Fulton authored
-
Jim Fulton authored
Changed connections to work with unset (None) clients. Messages aren't forwarded until the client is set. This is to prevent sending spurious invalidation messages until a client is ready to recieve them.
-
Jim Fulton authored
-
- 30 Aug, 2008 1 commit
-
-
Christian Theune authored
-
- 29 Aug, 2008 11 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
clients, but ZEO clients haven't provided very good protection, leading to cache corruption. We'll hopefully fix these client issues, which cause other problems beside cache corruption, but it seems prudent to provide low-level cache protection.
-
Jim Fulton authored
should close the old connection, and mark ourselves dissconnected -- or so it seems. :) I'm chasing connection-invalidation bugs and this rearrangement makes the logic seem a bit simpler to me and sets the stage for a later fix for the invalidation problems.
-
Jim Fulton authored
-
Jim Fulton authored
-
Jim Fulton authored
avoid spurious errors on exit, especially for scripts, such as zeopack.
-
Jim Fulton authored
-
Jim Fulton authored
of intermittent test failures. In ConnectionTests, a random port was selected without checking if it was in use. testZEO.get_port (moved to forker) picked a random port, checking if it was in use, but clients actually used that port *and* the following one. Now check that the returned and subsequent ports are free. (Of course, they could get used betweed the time they're selected and the time they are used by the test. Oh well.
-
Jim Fulton authored
read_only. It was set when a connection was tested, before the connection was attached t the storage. This made me wonder if the flag and connection could get out of sync. Because of details of the complex connection dance, it appears that the flag will have a usable value, almost by accident. Ironically, if the storage was opened read-only, this flag was set to true. This all seemed very fragile, and probably a bug magnet. I refactored this so the flag is on the connection, rather than the storage. I also arranged that if the storage is opened read-only, the flag is True.
-
Jim Fulton authored
-
Jim Fulton authored
caused an unneeded trigger to be created for each client connection. This caused tests hang due to running out of file handles. Let all server connections share a single trigger to avoid using too many file handles in the server.
-
- 27 Aug, 2008 1 commit
-
-
Florian Schulze authored
Fixed setup.py use of setuptools vs distutils, so .c and .h files are included in the bdist_egg. Merged from r90444 in the 3.8 branch.
-
- 25 Aug, 2008 1 commit
-
-
Christian Theune authored
-
- 04 Aug, 2008 2 commits
-
-
Christian Theune authored
-
Christian Theune authored
-
- 24 Jul, 2008 1 commit
-
-
Thomas Lotze authored
-
- 21 Jun, 2008 2 commits
-
-
Christian Theune authored
-
Christian Theune authored
- Fixed bug in bushy layout: oid recognition pattern would not handle hex representations correctly - Fixed bug in lawn layout: empty strings (the base directory) would be recognized as the oid 0.
-
- 20 Jun, 2008 1 commit
-
-
Christian Theune authored
compatibility for the old `lawn` layout.
-
- 05 Jun, 2008 2 commits
-
-
Christian Zagrodnick authored
-
Christian Zagrodnick authored
-
- 22 May, 2008 1 commit
-
-
https://bugs.launchpad.net/zodb/+bug/182833Dieter Maurer authored
Notes: I had to exclude 'kill_does_not_cause_cache_corruption (ZEO.tests.test_cache.__test__)' from the test as it deterministically hung on my platform (with or without my fix) Running the remaining test suite caused Ran 3279 tests with 5 failures and 0 errors in 17 minutes 31.116 seconds and one import problem -- all failures and problems in zope.testing-3.5.1-py2.4.egg, i.e. unrelated to my fix: Tests with failures: /home/dieter/ZopeSVN/W/ZODB/eggs/zope.testing-3.5.1-py2.4.egg/zope/testing/testrunner-coverage.txt /home/dieter/ZopeSVN/W/ZODB/eggs/zope.testing-3.5.1-py2.4.egg/zope/testing/testrunner-debugging.txt /home/dieter/ZopeSVN/W/ZODB/eggs/zope.testing-3.5.1-py2.4.egg/zope/testing/testrunner-edge-cases.txt /home/dieter/ZopeSVN/W/ZODB/eggs/zope.testing-3.5.1-py2.4.egg/zope/testing/testrunner-layers-ntd.txt /home/dieter/ZopeSVN/W/ZODB/eggs/zope.testing-3.5.1-py2.4.egg/zope/testing/testrunner-colors.txt Test-modules with import problems: zope.testing.testrunner.tests
-
- 15 May, 2008 4 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
weren't constructed properly.
-
Jim Fulton authored
- The cache used an excessive amount of memory, causing applications with large caches to exhaust available memory. - Fixed a number of bugs in the handling of persistent ZEO caches: - Cache records are written in several steps. If a process exits after writing begins and before it is finishes, the cache will be corrupt on restart. The way records are writted was changed to make cache record updates atomic. - There was no lock file to prevent opening a cache multiple times at once, which would lead to corruption. Persistent caches now use lock files, in the same way that file storages do. - A bug in the cache-opening logic led to cache failure in the unlikely event that a cache has no free blocks.
-
Jim Fulton authored
-