fix: private key not found error
This commit is contained in:
parent
83993cbbb2
commit
0e7a304610
1 changed files with 4 additions and 1 deletions
|
|
@ -174,8 +174,11 @@ function decode_remote_command_output(?ApplicationDeploymentQueue $application_d
|
|||
return $formatted;
|
||||
}
|
||||
|
||||
function refresh_server_connection(PrivateKey $private_key)
|
||||
function refresh_server_connection(?PrivateKey $private_key = null)
|
||||
{
|
||||
if (is_null($private_key)) {
|
||||
return;
|
||||
}
|
||||
foreach ($private_key->servers as $server) {
|
||||
Storage::disk('ssh-mux')->delete($server->muxFilename());
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue