Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Commit

Permalink
Decrease default ask interval
Browse files Browse the repository at this point in the history
  • Loading branch information
dmhacker committed Feb 9, 2019
1 parent d96a5f7 commit 04521c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const interactive_wait = !(process.env.DISABLE_INTERACTIVE_WAIT === "true" ||
process.env.DISABLE_INTERACTIVE_WAIT === true ||
process.env.DISABLE_INTERACTIVE_WAIT === 1);
const cache_polling_interval = parseInt(process.env.CACHE_POLLING_INTERVAL || "5000", 10);
const ask_interval = parseInt(process.env.ASK_INTERVAL || "60000", 10);
const ask_interval = parseInt(process.env.ASK_INTERVAL || "45000", 10);

// Variables relating to videos waiting for user input
var buffer_search = {};
Expand Down

0 comments on commit 04521c2

Please sign in to comment.