From a3fd334674abb2c1cf172c2dfcf196f5e15a9b05 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Mon, 14 Jun 2021 14:12:29 +0200 Subject: [PATCH] change 100 to 10 seconds timeout for double transaction --- login_server/src/cpp/model/gradido/Transaction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/login_server/src/cpp/model/gradido/Transaction.cpp b/login_server/src/cpp/model/gradido/Transaction.cpp index 16555c485..404d4f747 100644 --- a/login_server/src/cpp/model/gradido/Transaction.cpp +++ b/login_server/src/cpp/model/gradido/Transaction.cpp @@ -647,8 +647,8 @@ namespace model { delete own_body_updated; - // if they are more than 100 seconds between transaction they consider as not the same - if (abs(timeDiff) > 100) { + // if they are more than 10 seconds between transaction they consider as not the same + if (abs(timeDiff) > 10) { return false; }