From fd064304bbf1c6e1d6a1fb1b8061ce9a89891f8d Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 28 Sep 2021 14:55:13 -0400 Subject: [PATCH] TT#14008 fix missing timestamping during redis restore closes #1363 Change-Id: I4aac5096fd18067b3503e834a687277e7d5903fb --- daemon/redis.c | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon/redis.c b/daemon/redis.c index a9a45ea68..f5f67e135 100644 --- a/daemon/redis.c +++ b/daemon/redis.c @@ -2006,6 +2006,7 @@ static void restore_thread(void *call_p, void *ctx_p) { r = g_queue_pop_head(&ctx->r_q); mutex_unlock(&ctx->r_m); + gettimeofday(&rtpe_now, NULL); json_restore_call(r, &callid, ctx->foreign); mutex_lock(&ctx->r_m);