Skip to content

Commit 16e472d

Browse files
committed
chore: Update constants.ssh.mux_enabled in remoteProcess.php
1 parent 7dd0588 commit 16e472d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bootstrap/helpers/remoteProcess.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ function generateSshCommand(Server $server, string $command)
197197

198198
function ensureMultiplexedConnection(Server $server)
199199
{
200-
if (!(config('coolify.mux_enabled') && config('coolify.is_windows_docker_desktop') == false)) {
200+
if (! (config('constants.ssh.mux_enabled') && config('coolify.is_windows_docker_desktop') == false)) {
201201
return;
202202
}
203203

@@ -268,7 +268,7 @@ function ensureMultiplexedConnection(Server $server)
268268

269269
function shouldResetMultiplexedConnection(Server $server)
270270
{
271-
if (!(config('coolify.mux_enabled') && config('coolify.is_windows_docker_desktop') == false)) {
271+
if (! (config('constants.ssh.mux_enabled') && config('coolify.is_windows_docker_desktop') == false)) {
272272
return false;
273273
}
274274

@@ -287,7 +287,7 @@ function shouldResetMultiplexedConnection(Server $server)
287287

288288
function resetMultiplexedConnection(Server $server)
289289
{
290-
if (!(config('coolify.mux_enabled') && config('coolify.is_windows_docker_desktop') == false)) {
290+
if (! (config('constants.ssh.mux_enabled') && config('coolify.is_windows_docker_desktop') == false)) {
291291
return;
292292
}
293293

0 commit comments

Comments
 (0)