From f97effcfe080471614400a440c8457b50697858d Mon Sep 17 00:00:00 2001
From: Alejandro Celaya <alejandrocelaya@gmail.com>
Date: Sat, 27 Aug 2022 19:40:52 +0200
Subject: [PATCH] Fixed rr E2E tests

---
 config/config.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/config/config.php b/config/config.php
index 4f4a1359..15a45348 100644
--- a/config/config.php
+++ b/config/config.php
@@ -13,12 +13,13 @@ use Shlinkio\Shlink\Config\ConfigAggregator\EnvVarLoaderProvider;
 
 use function class_exists;
 use function Shlinkio\Shlink\Config\env;
+use function Shlinkio\Shlink\Config\openswooleIsInstalled;
 use function Shlinkio\Shlink\Config\runningInRoadRunner;
 
 use const PHP_SAPI;
 
 $isTestEnv = env('APP_ENV') === 'test';
-$enableSwoole = PHP_SAPI === 'cli' && ! runningInRoadRunner();
+$enableSwoole = PHP_SAPI === 'cli' && openswooleIsInstalled() && ! runningInRoadRunner();
 
 return (new ConfigAggregator\ConfigAggregator([
     ! $isTestEnv