Skip to content

Commit 4062af8

Browse files
authored
Merge pull request #110 from magento-commerce/MCLOUD-10075
MCLOUD-10075: Fix validator for OpenSearch
2 parents e1972ad + 60925e0 commit 4062af8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DB/DumpGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public function create(
142142
flock($lockFileHandle, LOCK_UN);
143143
} catch (ShellException $exception) {
144144
if (file_exists($dumpFile)) {
145-
$this->shell->execute('rm -rf' . $dumpFile);
145+
$this->shell->execute('rm -rf ' . $dumpFile);
146146
}
147147
throw $exception;
148148
} finally {

src/Service/Validator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class Validator
8484
],
8585
ServiceInterface::NAME_OPENSEARCH => [
8686
'>=2.3.7-p3 <2.4.0 || >=2.4.3-p2 <2.4.6' => '~1.1.0 || ~1.2.1',
87-
'>=2.4.6' => '~2.3.0',
87+
'>=2.4.6' => '^2',
8888
],
8989
ServiceInterface::NAME_RABBITMQ => [
9090
'<2.3.0' => '~3.5.0',

0 commit comments

Comments
 (0)