fix(database): ensure internal port defaults correctly for unsupported database types in StartDatabaseProxy

This commit is contained in:
Andras Bacsai 2025-07-08 21:03:20 +02:00
parent ab19bad9d9
commit eb322ce397

View file

@ -47,6 +47,7 @@ public function handle(StandaloneRedis|StandalonePostgresql|StandaloneMongodb|St
if ($isSSLEnabled) {
$internalPort = match ($databaseType) {
'standalone-redis', 'standalone-keydb', 'standalone-dragonfly' => 6380,
default => $internalPort,
};
}