diff --git a/app/Models/Node.php b/app/Models/Node.php index a1da6cffa..d1e383be1 100644 --- a/app/Models/Node.php +++ b/app/Models/Node.php @@ -122,7 +122,7 @@ class Node extends Model */ public function getConnectionAddress(): string { - return sprintf('%s://%s:%s', $this->scheme, $this->fqdn, $this->daemonListen); + return "$this->scheme://$this->fqdn:$this->daemonListen"; } /**