Skip to content

Commit

Permalink
Fixed default mysql host
Browse files Browse the repository at this point in the history
  • Loading branch information
intuibase committed Dec 5, 2024
1 parent f9910cd commit 495921f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function setUp(): void
->withPropagator(TraceContextPropagator::getInstance())
->activate();

$this->mysqlHost = getenv('MYSQL_HOST') ?: 'localhost';
$this->mysqlHost = getenv('MYSQL_HOST') ?: '127.0.0.1';

$this->user = 'otel_user';
$this->passwd = 'otel_passwd';
Expand Down

0 comments on commit 495921f

Please sign in to comment.