From 655d9d12229a06bc3652ae7a5e21356c8c2c927b Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Mon, 15 Oct 2018 11:53:58 -0700 Subject: [PATCH] Longer timeout for orphaned file cleanup --- js/modules/data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/modules/data.js b/js/modules/data.js index 392910a5b..cb9a41746 100644 --- a/js/modules/data.js +++ b/js/modules/data.js @@ -417,7 +417,7 @@ async function callChannel(name) { setTimeout( () => reject(new Error(`callChannel call to ${name} timed out`)), - 5000 + DATABASE_UPDATE_TIMEOUT ); }); }