You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expect that "The mail is being being sent daily starting in an hour. Untill one of the constraints is being touched.". Techincally this means that completed_at should never be set until the constraint is hit.
In practice this is not working because the completed_at value is always being set by the garbage resolver when using after as a time_frame_origin
This isRepetitive should also be added to the after origin I think
if ($this->isBefore()) {
if ($this->isRepetitive()) {
returntrue;
}
returnnow()->lt($this->triggerTarget());
}
The text was updated successfully, but these errors were encountered:
When using a frequency in combination with
after
. Then scheduler garbare resolver does not what I expect it to do.With below code
I expect that "The mail is being being sent daily starting in an hour. Untill one of the constraints is being touched.". Techincally this means that completed_at should never be set until the constraint is hit.
In practice this is not working because the completed_at value is always being set by the garbage resolver when using
after
as a time_frame_originThis
isRepetitive
should also be added to the after origin I thinkThe text was updated successfully, but these errors were encountered: