Skip to content

Commit ecae040

Browse files
authored
Fix index backfilling frequency (#10173)
1 parent 44a4c7c commit ecae040

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firestore/core/src/core/firestore_client.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ static const auto kInitialGCDelay = std::chrono::minutes(1);
111111
static const auto kRegularGCDelay = std::chrono::minutes(5);
112112

113113
/** How long we wait to try running index backfill after SDK initialization. */
114-
static const auto kInitialBackfillDelay = std::chrono::milliseconds(15);
114+
static const auto kInitialBackfillDelay = std::chrono::seconds(15);
115115
/** Minimum amount of time between backfill checks, after the first one. */
116-
static const auto kRegularBackfillDelay = std::chrono::milliseconds(1000);
116+
static const auto kRegularBackfillDelay = std::chrono::minutes(1);
117117

118118
} // namespace
119119

0 commit comments

Comments
 (0)