From 92706045ade4e601953142645e0d6091212ea99f Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Tue, 25 Jan 2022 23:31:42 +0400 Subject: [PATCH] feat: refactor the builds worker --- app/workers/builds.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/workers/builds.php b/app/workers/builds.php index 6a37a63908..d97ef0d4b1 100644 --- a/app/workers/builds.php +++ b/app/workers/builds.php @@ -88,7 +88,7 @@ class BuildsV1 extends Worker protected function triggerCreateRuntimeServer(string $projectId, string $functionId, string $tagId) { $ch = \curl_init(); - \curl_setopt($ch, CURLOPT_URL, "http://appwrite-executor:8080/v1/executor/runtime"); + \curl_setopt($ch, CURLOPT_URL, "http://appwrite-executor/v1/executor/runtime"); \curl_setopt($ch, CURLOPT_POST, true); \curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); \curl_setopt($ch, CURLOPT_TIMEOUT, 900);