Skip to content

Commit

Permalink
update of naming LU-140
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielLumao authored and romainruaud committed Dec 6, 2023
1 parent 7a571ae commit 113341a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/module-elasticsuite-core/Client/ClientConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public function getMaxRetries()
/**
* @return bool
*/
public function getVerify()
public function isVerifyEnabled()
{
return (bool) $this->getElasticsearchClientConfigParam('enable_certificate_validation');
}
Expand All @@ -153,7 +153,7 @@ public function getOptions()
'is_debug_mode_enabled' => $this->isDebugModeEnabled(),
'max_parallel_handles' => $this->getMaxParallelHandles(),
'max_retries' => $this->getMaxRetries(),
'verify' => $this->getVerify(),
'verify' => $this->isVerifyEnabled(),
];

return $options;
Expand Down

0 comments on commit 113341a

Please sign in to comment.