From c156a2cc2272b6031d3be9dad4e1b2e42333bbaf Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 8 Oct 2024 05:35:25 -0400 Subject: [PATCH] http status error --- www-api/app/Controllers/WrenchJobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www-api/app/Controllers/WrenchJobs.php b/www-api/app/Controllers/WrenchJobs.php index f7d3de41..be4228cf 100644 --- a/www-api/app/Controllers/WrenchJobs.php +++ b/www-api/app/Controllers/WrenchJobs.php @@ -147,7 +147,7 @@ class WrenchJobs extends BaseController $out = $this->APIcall('GET', $local_url, $in ); $this->saveCache($endpoint,$out,360); } - return $this->respond( $this->summaryReturnData($in,$out), 3000); + return $this->respond( $this->summaryReturnData($in,$out), 200); }