From 92a11a8500ac6f6294387dc795b9bba18985083a Mon Sep 17 00:00:00 2001 From: Robert O'Rourke Date: Tue, 19 Jan 2021 18:31:09 +0000 Subject: [PATCH] Enable XRay by default This was causing problem with the Cloud module's default setting fro XRay so we should avoid errors with a vanilla install. Devs will need to switch off both the cloud module setting and the local server setting to fully turn off xray locally. Fixes #254 --- inc/composer/class-docker-compose-generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/composer/class-docker-compose-generator.php b/inc/composer/class-docker-compose-generator.php index d5164e64..8d83a137 100644 --- a/inc/composer/class-docker-compose-generator.php +++ b/inc/composer/class-docker-compose-generator.php @@ -647,7 +647,7 @@ protected function get_config( $module = 'local-server' ) : array { 'cavalcade' => true, 'elasticsearch' => true, 'kibana' => true, - 'xray' => false, + 'xray' => true, ]; return array_merge( $defaults, $config );