Open pikesley opened 3 years ago
@pikesley Try adding check_every
.
@pikesley Do you have global-resources
enabled? Also, are those resources sharing the same resource configuration as other resources? (for ex, you have a lot of resources in your deployment that point to the same docker registry)
@pikesley Try adding
check_every
.
This is what worked for me. This led me to check what Global Env Var I have set and surely enough I found: CONCOURSE_RESOURCE_CHECKING_INTERVAL=12h
I guess by setting it on the resource it overrides that Default Env Var:
resources:
- name: my-timer
type: time
check_every: 1m
source:
interval: 120s
location: Europe/London
Hi
We've just upgraded to Concourse 6.7 (from 5.8), and
time
-triggered pipelines that worked fine in 5 are now broken. I have some pipelines that are set to run every 5 minutes that are now launching once an hour.I've setup a very simple pipeline to demonstrate what I mean:
When I deploy this, the
timed-run
resource immediately showschecked successfully
but does not trigger the job. When I force a check, the job is eventually triggered, but then the resource sits and waits, seemingly forever. It currently saysAm I doing something wrong? Has something changed? Please help, this is breaking quite a few workflows now
Thanks
Sam