不要怂,就是干,撸起袖子干!

Commit c1a38ec4 by Willyham

Dont test pooling in sqlite

1 parent c428e40a
......@@ -59,6 +59,10 @@ describe('Connction Manager', function() {
});
it('should round robin calls to the read pool', function() {
if (Support.getTestDialect() === 'sqlite') {
return;
}
var slave1 = _.clone(poolEntry);
var slave2 = _.clone(poolEntry);
slave1.host = 'slave1';
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!