From 7504978af7487655d5dd35f5edcc718704a6682e Mon Sep 17 00:00:00 2001 From: Digimer Date: Tue, 6 Dec 2022 15:31:35 -0500 Subject: [PATCH] Increased the size change detection wait to to reduce the risk of premature addition to the DB if there's a network hiccup. Signed-off-by: Digimer --- Anvil/Tools/Storage.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Anvil/Tools/Storage.pm b/Anvil/Tools/Storage.pm index f81c485b..6f94d3b6 100644 --- a/Anvil/Tools/Storage.pm +++ b/Anvil/Tools/Storage.pm @@ -5269,12 +5269,12 @@ sub _wait_if_changing if (not $delay) { - $delay = 2; + $delay = 10; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => $debug, list => { delay => $delay }}); } elsif (($delay =~ /\D/) or ($delay == 0)) { - $delay = 2; + $delay = 10; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => $debug, list => { delay => $delay }}); }