Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add skip_delayed_by description #1744

Merged
merged 1 commit into from
Jun 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions digdag-docs/src/scheduling_workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,15 @@ For example, If Digdag restarts at 20:00:00 and a workflow scheduled as below, i

+setup:
sh>: echo ${session_time}


Also, if your workflow starts with delay ``skip_delayed_by`` option takes effect as well.

For example, your scheduling looks like this.
If the workflow is executed at 16:02 due to some reason, the session will be skipped because ``skip_delayed_by`` is set to 1s and it is too late for the configured value.

.. code-block:: yaml

schedule:
cron>: '0 16 * * *'
skip_delayed_by: 1s