Configure Jenkins to Poll less than every minute

Avi Rosenfeld picture Avi Rosenfeld · May 9, 2013 · Viewed 26.8k times · Source

Configuring the Jenkins polling interval to: * * * * * will poll the SCM for every minute. Is there a way to configure it to poll less than a minute? for example every 30 seconds?

Answer

Chewpers picture Chewpers · May 9, 2013

Jenkins uses Cron syntax for polling. Not sure you can get to 30 seconds since Cron has a 60 sec granularity.

Check out this: How to get a unix script to run every 15 seconds?