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

Dependent actions do not run if dependency was skipped before the job starts #300

Open
kesre opened this issue Jan 14, 2015 · 0 comments
Open
Projects

Comments

@kesre
Copy link

kesre commented Jan 14, 2015

Repro:
1 - Create a regularly scheduled job with a dependency

  - name: "test"
    node: ...
    schedule:
        start_time: "00:01:00"
    actions:
        - name: "foo"
          command: "echo foo"
        - name: "bar"
          command: "echo bar"
          requires: [foo]

2 - Skip foo while foo and bar are in state 'scheduled'
3 - Wait for scheduled time

Expected:
- action "bar" is started at the job's scheduled time (state starting/running/succeeded by the time it is observed)
- job state is (running/succeeded)

Observed:
- action "bar" is in state 'queued'
- job state is 'unknown'

@solarkennedy solarkennedy added this to Backlog in Yelp/paasta Mar 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

1 participant