We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2852785 + 3750ddc commit 7d504e9Copy full SHA for 7d504e9
src/Wrapper/JaegerConnectionWrapper.php
@@ -33,11 +33,11 @@ public function setTracer(TracerInterface $tracer)
33
public function connect()
34
{
35
if ($this->isConnected()) {
36
- return;
+ return false;
37
}
38
$span = $this->tracer->start('dbal.connect');
39
try {
40
- parent::connect();
+ return parent::connect();
41
} catch (\Exception $e) {
42
$span->addTag(new DbalErrorCodeTag($e->getCode()))
43
->addTag(new ErrorTag());
0 commit comments