diff --git a/src/Services/Endpoint.php b/src/Services/Endpoint.php index e3d47be9..7a5f93a8 100644 --- a/src/Services/Endpoint.php +++ b/src/Services/Endpoint.php @@ -206,9 +206,12 @@ public function getSchemaUploadUri(): string { */ public function getReloadUri(): string { return vsprintf( - '%s/%s', + '%s://%s:%d/%s%s', [ - $this->getCoreBaseUri(), + $this->getScheme(), + $this->getHost(), + $this->getPort(), + $this->getPath(), $this->getReloadPath(), ] );