Skip to content

Commit

Permalink
Additional fixes to Clone Command (CO-479)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benn Oshrin committed Mar 10, 2026
1 parent dc9c9b6 commit d811378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/Command/CloneCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ protected function cloneEntity(

if(method_exists($Table, "checkCloneDependencies")) {
try {
$Table->checkCloneDependencies($original, $targetDataSource);
$Table->checkCloneDependencies($original, $targetCoId, $targetDataSource);
}
catch(\Exception $e) {
$this->io->out($original->uuid . ": checkCloneDependencies failed, skipping " . $className . " " . $id . ": " . $e->getMessage());
Expand Down

0 comments on commit d811378

Please sign in to comment.