From 1a346bb3ec15551b1ddb25124af4f5c513b29ef6 Mon Sep 17 00:00:00 2001 From: Don Pflaster Date: Wed, 21 Mar 2018 09:23:55 -0400 Subject: [PATCH] Update readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 9a9ed78..9ce82ec 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,13 @@ defmodule MyApp.JobQueue do ... end ``` +### Options +You can customize how often the table is polled for scheduled jobs. The default is 60_000 ms. + +``` +config :ecto_job, :poll_interval, 15_000 +``` ## How it works