Skip to content

Commit

Permalink
Fixed preprocessor skip command bug. (#1126)
Browse files Browse the repository at this point in the history
* Fixed preprocessor skip command bug.

* Added changelog entry.

* Updated changelog entry version.
  • Loading branch information
gochujang-c authored Nov 28, 2024
1 parent 450816b commit 5e40910
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/inc/utils/PreprocessorUtils.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 5e40910

Please sign in to comment.