Skip to content

Commit

Permalink
Bug fixes for CFM-154 and CFM-445
Browse files Browse the repository at this point in the history
  • Loading branch information
Benn Oshrin committed Dec 20, 2025
1 parent feb118b commit 0fc877a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/availableplugins/PipelineToolkit/config/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"types": {
"pipeline": [
"flange": [
"IdentifierMappers",
"PersonRoleMappers"
]
Expand Down
2 changes: 1 addition & 1 deletion app/src/Model/Table/JobsTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ public function isCanceled(int $id): bool {
// Make sure to skip any cached records, since a Job InProgress needs up to
// date status to determine if it should stop.

$job = $this->get($id, cache: false);
$job = $this->get($id, cache: null);

return $job->status == JobStatusEnum::Canceled;
}
Expand Down

0 comments on commit 0fc877a

Please sign in to comment.