Skip to content

Commit

Permalink
Disabled ELASTICSEARCH_URL from Utility class
Browse files Browse the repository at this point in the history
  • Loading branch information
ezimuel committed Mar 6, 2022
1 parent 651aeec commit d13c117
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Utility.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ class Utility
*/
public static function getHost(): ?string
{
$url = getenv('ELASTICSEARCH_URL');
if (false !== $url) {
return $url;
}
// $url = getenv('ELASTICSEARCH_URL');
// if (false !== $url) {
// return $url;
// }
if (getenv('TEST_SUITE') === 'free') {
return 'http://localhost:9200';
}
Expand Down

0 comments on commit d13c117

Please sign in to comment.