what is the simplest way to implement a concurrenc...
# ask-community
d
what is the simplest way to implement a concurrency limit of 1 for deployments
a
and
b
?
a
can run while
b
is running, but
a
cannot run when
a
is running. If `a`'s deployment is scheduled for every 5 minutes, and the last run is taking longer than 5 minutes, i do NOT want the next run of
a
to start yet.