From 8edfbdcee5adb3c409a32d6d62cda9160f2a1905 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 3f952ca5c..7d51b9416 100644 --- a/js/modules/data.js +++ b/js/modules/data.js @@ -524,7 +524,7 @@ async function callChannel(name) { setTimeout( () => reject(new Error(`callChannel call to ${name} timed out`)), - 5000 + DATABASE_UPDATE_TIMEOUT ); }); }