Skip to content

Commit

Permalink
Merge pull request #110 from magento-commerce/MCLOUD-10075
Browse files Browse the repository at this point in the history
MCLOUD-10075: Fix validator for OpenSearch
  • Loading branch information
BaDos authored Mar 6, 2023
2 parents e1972ad + 60925e0 commit 4062af8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DB/DumpGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public function create(
flock($lockFileHandle, LOCK_UN);
} catch (ShellException $exception) {
if (file_exists($dumpFile)) {
$this->shell->execute('rm -rf' . $dumpFile);
$this->shell->execute('rm -rf ' . $dumpFile);
}
throw $exception;
} finally {
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class Validator
],
ServiceInterface::NAME_OPENSEARCH => [
'>=2.3.7-p3 <2.4.0 || >=2.4.3-p2 <2.4.6' => '~1.1.0 || ~1.2.1',
'>=2.4.6' => '~2.3.0',
'>=2.4.6' => '^2',
],
ServiceInterface::NAME_RABBITMQ => [
'<2.3.0' => '~3.5.0',
Expand Down

0 comments on commit 4062af8

Please sign in to comment.