fix(database): ensure internal port defaults correctly for unsupported database types in StartDatabaseProxy
This commit is contained in:
parent
ab19bad9d9
commit
eb322ce397
1 changed files with 1 additions and 0 deletions
|
|
@ -47,6 +47,7 @@ public function handle(StandaloneRedis|StandalonePostgresql|StandaloneMongodb|St
|
||||||
if ($isSSLEnabled) {
|
if ($isSSLEnabled) {
|
||||||
$internalPort = match ($databaseType) {
|
$internalPort = match ($databaseType) {
|
||||||
'standalone-redis', 'standalone-keydb', 'standalone-dragonfly' => 6380,
|
'standalone-redis', 'standalone-keydb', 'standalone-dragonfly' => 6380,
|
||||||
|
default => $internalPort,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue