ZF-10778: CLONE -metadata cache identifier collisions
Description
Same with resolution of the issue ZF-7042. Still has a problem in the generation of id cache.
Problem are keys not existing in the values returned by Zend_Db_Abstract::getConfig(); Are the keys:
$dbConfig['options']['port']
$dbConfig['options']['host']
That should be change to
$dbConfig['port']
$dbConfig['host']
Here a reproduction simple, with values expected http://pastebin.com/NVbnG7mG.
Comments
Posted by Ramon Henrique Ornelas (ramon) on 2010-12-24T08:33:56.000+0000
Fixed in trunk r23577 merged to release branch 1.11 r23578.