We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44a4c7c commit ecae040Copy full SHA for ecae040
Firestore/core/src/core/firestore_client.cc
@@ -111,9 +111,9 @@ static const auto kInitialGCDelay = std::chrono::minutes(1);
111
static const auto kRegularGCDelay = std::chrono::minutes(5);
112
113
/** How long we wait to try running index backfill after SDK initialization. */
114
-static const auto kInitialBackfillDelay = std::chrono::milliseconds(15);
+static const auto kInitialBackfillDelay = std::chrono::seconds(15);
115
/** Minimum amount of time between backfill checks, after the first one. */
116
-static const auto kRegularBackfillDelay = std::chrono::milliseconds(1000);
+static const auto kRegularBackfillDelay = std::chrono::minutes(1);
117
118
} // namespace
119
0 commit comments