Skip to content

Commit

Permalink
Incorporate review from @oliwel
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuelsmann committed Aug 6, 2023
1 parent 42241de commit 284bfa5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/Workflow.pm
Expand Up @@ -296,10 +296,7 @@ sub _execute_single_action {
$self->log->is_debug && $self->log->debug("Action validated ok");
if ($action_args) {
# Merge the action args into the context
my $ctx = $self->context;
while (my ($k, $v) = each %{$action_args}) {
$ctx->param( $k, $v );
}
$self->context->param( $action_args );
}
$action_return = $action->execute($self);
$self->log->is_debug && $self->log->debug("Action executed ok");
Expand Down

0 comments on commit 284bfa5

Please sign in to comment.