Closed (fixed)
Project:
Drupal core
Version:
7.x-dev
Component:
database system
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
17 Nov 2008 at 22:45 UTC
Updated:
6 Dec 2008 at 14:22 UTC
Jump to comment: Most recent file
Comments
Comment #1
damien tournoud commentedgetActiveConnection() and getConnection() were buggy anyway: if called on a non existing target, openConnection() will be called each time, because the target will not be found in self::$connections
Comment #2
damien tournoud commentedBug description: all getConnection() twice with the same unknown $target... openConnection() is called twice...
Now with a unit test case.
Comment #3
damien tournoud commentedNow with some less incorrect English.
Comment #4
dries commentedMakes sense, and the tests made it easy to understand and review. Committed to CVS HEAD. Thanks a lot.