I have the following scheduled rule

Rule: some_rule
Event: After saving content
Condition: whatever
Action: Schedule component check_some_field_value using saved node as input

Component: check_some_field_value
Input: node
Condition: Compare value of field_some_int to be more then 0
Action: Send mail to administrator
Action: Schedule check_some_field_value

Given that field_some_int is zero when first saving the node
And that node is updated with field_some_int = 1 (before the scheduling time)
What is the expected behavior?

The original node when the rule executed (field_some_int = 0)
actions not triggered and scheduling is completed

-or-

The current state of the node (field_some_int = 1)
actions are triggered, mail and reschedule of the component