From ea66979cf5d63073901f8927333f61095bc84db1 Mon Sep 17 00:00:00 2001 From: Darryl Masson Date: Wed, 21 Oct 2020 18:02:00 +0200 Subject: [PATCH] Looser timeout --- main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cc b/main.cc index c759ab30..8cb4a5b5 100644 --- a/main.cc +++ b/main.cc @@ -224,7 +224,7 @@ int main(int argc, char** argv){ fOptions = std::make_shared(fLog, mode, hostname, suri, dbname, override_json); int dt = duration_cast(system_clock::now()-ack_time).count(); - if (dt > 2000){ + if (dt > 6000){ fLog->Entry(MongoLog::Warning, "Took too long to pull the config docs, try again"); continue;