We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1972ad + 60925e0 commit 4062af8Copy full SHA for 4062af8
src/DB/DumpGenerator.php
@@ -142,7 +142,7 @@ public function create(
142
flock($lockFileHandle, LOCK_UN);
143
} catch (ShellException $exception) {
144
if (file_exists($dumpFile)) {
145
- $this->shell->execute('rm -rf' . $dumpFile);
+ $this->shell->execute('rm -rf ' . $dumpFile);
146
}
147
throw $exception;
148
} finally {
src/Service/Validator.php
@@ -84,7 +84,7 @@ class Validator
84
],
85
ServiceInterface::NAME_OPENSEARCH => [
86
'>=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',
+ '>=2.4.6' => '^2',
88
89
ServiceInterface::NAME_RABBITMQ => [
90
'<2.3.0' => '~3.5.0',
0 commit comments