From 2428bc8b3e37cd9e994b74dca8ee1ae7751a1778 Mon Sep 17 00:00:00 2001 From: Blake Li Date: Thu, 14 May 2026 19:06:16 +0000 Subject: [PATCH] fix(firestore): increase ITShutdownTest timeout to 50s --- .../java/com/google/cloud/firestore/it/ITShutdownTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java-firestore/google-cloud-firestore/src/test/java/com/google/cloud/firestore/it/ITShutdownTest.java b/java-firestore/google-cloud-firestore/src/test/java/com/google/cloud/firestore/it/ITShutdownTest.java index f6ca62e9dd1f..d898e5f499f4 100644 --- a/java-firestore/google-cloud-firestore/src/test/java/com/google/cloud/firestore/it/ITShutdownTest.java +++ b/java-firestore/google-cloud-firestore/src/test/java/com/google/cloud/firestore/it/ITShutdownTest.java @@ -38,7 +38,8 @@ @RunWith(JUnit4.class) public class ITShutdownTest extends ITBaseTest { - @Rule public final Timeout timeout = new Timeout(5, TimeUnit.SECONDS); + // 45s budget for ITBaseTest backend priming + 5s budget for shutdown execution + @Rule public final Timeout timeout = new Timeout(50, TimeUnit.SECONDS); @Rule public TestName testName = new TestName(); @Test