From d8eb3ab90e31edcdb03bf75c41d1faf670886088 Mon Sep 17 00:00:00 2001 From: Jellyfrog Date: Sat, 21 Sep 2019 02:49:14 +0200 Subject: [PATCH] Fix timeout typo in apiclients (#10615) --- app/ApiClients/BaseApi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ApiClients/BaseApi.php b/app/ApiClients/BaseApi.php index 4bc5acadae..6186f3fce6 100644 --- a/app/ApiClients/BaseApi.php +++ b/app/ApiClients/BaseApi.php @@ -37,7 +37,7 @@ class BaseApi if (is_null($this->client)) { $this->client = new Client([ 'base_uri' => $this->base_uri, - 'tiemout' => 2, + 'timeout' => 2, ]); }