This commit is contained in:
2023-03-31 23:36:08 +08:00
parent d7060dd82e
commit 0fa38df2c9
+3 -7
View File
@@ -100,14 +100,10 @@ class Connection extends Component
if (!$this->pool->hasChannel($name)) { if (!$this->pool->hasChannel($name)) {
$this->pool->initConnections($name, $config['pool']['max']); $this->pool->initConnections($name, $config['pool']['max']);
} }
if ($isMaster) { if (!Context::hasContext($name)) {
if (!Context::hasContext($name)) { return Context::setContext($name, $this->pool->get($name, $this->generate($config)));
return Context::setContext($name, $this->pool->get($name, $this->generate($config)));
} else {
return Context::getContext($name);
}
} else { } else {
return $this->pool->get($name, $this->generate($config)); return Context::getContext($name);
} }
} }