8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00

Corrected the condition

This commit is contained in:
Dmitry Yemanov 2021-07-30 15:59:41 +03:00
parent daada33d4f
commit 847dade8c8

View File

@ -770,7 +770,7 @@ namespace
// If no new segments appeared since our last attempt,
// then there's no point in replaying the whole sequence
if (max_sequence == last_sequence)
if (max_sequence == last_sequence && !last_offset)
{
target->verbose("No new segments found, suspending for %u seconds",
config->applyIdleTimeout);