Skip to content

Commit

Permalink
Ignore current op.opts changes - no opts that dictate planning
Browse files Browse the repository at this point in the history
  • Loading branch information
jpwilliams committed Nov 18, 2024
1 parent bb7dbea commit 58bf580
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/inngest/src/components/execution/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,11 @@ class V1InngestExecution extends InngestExecution implements IInngestExecution {

if (
op &&
op.op === StepOpCode.StepPlanned &&
typeof op.opts === "undefined"
op.op === StepOpCode.StepPlanned
// TODO We must individually check properties here that we do not want to
// execute on, such as retry counts. Nothing exists here that falls in to
// this case, but should be accounted for when we add them.
// && typeof op.opts === "undefined"
) {
return op.hashedId;
}
Expand Down

0 comments on commit 58bf580

Please sign in to comment.