Skip to content

Commit 5b52b68

Browse files
authored
ci(bigtable): lower thread limit to 200 in 32bit builds (#15761)
1 parent eac569c commit 5b52b68

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

google/cloud/bigtable/internal/query_plan_test.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,11 @@ TEST(QueryPlanTest, CreateFailedPlanAndRefresh) {
229229
}
230230

231231
// TODO(#15695): For reasons not yet understood, the fedora m32 CI build has
232-
// failures not seen in m64 builds when the number of threads is "too" high.
232+
// failures not seen in m64 builds when the number of threads is "too" high.
233+
// These failures occur while trying to create more than 500 threads.
233234
constexpr int LimitNumThreadsOn32Bit(int num_threads) {
234235
#if INTPTR_MAX == INT32_MAX
235-
return std::min(num_threads, 500);
236+
return std::min(num_threads, 200);
236237
#else
237238
return num_threads;
238239
#endif

0 commit comments

Comments
 (0)