diff --git a/doc/changelog.md b/doc/changelog.md index ae76dbe5..83e97421 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -1,3 +1,10 @@ +# v0.14.3 -> v0.14.4 + +## Bugfixes + +- Fixed a bug where creating a new preprocessor would copy the configured limit command over the configured skip command + + # v0.14.2 -> v0.14.3 ## Tech Preview New API diff --git a/src/inc/utils/PreprocessorUtils.class.php b/src/inc/utils/PreprocessorUtils.class.php index ed8fab31..75fda032 100644 --- a/src/inc/utils/PreprocessorUtils.class.php +++ b/src/inc/utils/PreprocessorUtils.class.php @@ -54,7 +54,7 @@ public static function addPreprocessor($name, $binaryName, $url, $keyspaceComman $limitCommand = null; } - $preprocessor = new Preprocessor(null, $name, $url, $binaryName, $keyspaceCommand, $limitCommand, $limitCommand); + $preprocessor = new Preprocessor(null, $name, $url, $binaryName, $keyspaceCommand, $skipCommand, $limitCommand); Factory::getPreprocessorFactory()->save($preprocessor); }