Skip to content

Commit

Permalink
feat(subscriber): add PAUSED state to task status updates
Browse files Browse the repository at this point in the history
- Updated taskSubscriber.js to include the PAUSED state in the subscribeTaskStatusUpdates function, enhancing task status management.
- This change aligns with recent enhancements to workflow control, allowing for better tracking of tasks during interruptions.
  • Loading branch information
anthonydevs17 committed Jan 21, 2025
1 parent ca0b70a commit 49b6101
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/subscribers/taskSubscriber.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ const subscribeTaskStatusUpdates = (useStore) => {
break;
case TASK_STATUS_enum.DOING:
case TASK_STATUS_enum.BLOCKED:
case TASK_STATUS_enum.PAUSED:
case TASK_STATUS_enum.REVISE:
case TASK_STATUS_enum.AWAITING_VALIDATION:
case TASK_STATUS_enum.VALIDATED:
Expand Down

0 comments on commit 49b6101

Please sign in to comment.