Skip to content

Commit

Permalink
move triggers to standard provider
Browse files Browse the repository at this point in the history
  • Loading branch information
gopidesupavan committed Nov 2, 2024
1 parent fb25d92 commit f78ecc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/boring-cyborg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -647,12 +647,12 @@ labelPRBasedOnFilePath:
- airflow/cli/commands/triggerer_command.py
- airflow/jobs/triggerer_job_runner.py
- airflow/models/trigger.py
- providers/src/airflow/providers/standard/triggers/*
- providers/src/airflow/providers/standard/triggers/**/*
- tests/cli/commands/test_triggerer_command.py
- tests/jobs/test_triggerer_job.py
- tests/models/test_trigger.py
- tests/jobs/test_triggerer_job_logging.py
- providers/tests/standard/triggers/*
- providers/tests/standard/triggers/**/*

area:Serialization:
- airflow/serialization/**/*
Expand Down
2 changes: 1 addition & 1 deletion providers/tests/standard/triggers/test_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def test_task_file_trigger(self, tmp_path):

trigger = FileTrigger(
filepath=str(p.resolve()),
poke_interval=0.5,
poke_interval=0.2,
)

task = asyncio.create_task(trigger.run().__anext__())
Expand Down

0 comments on commit f78ecc5

Please sign in to comment.