You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The effect of the change is that initial attempts with small delay
are spread out in time more, which increases the overall time that
events are stored.
Copy file name to clipboardExpand all lines: transport/transport-runtime/src/main/java/com/google/android/datatransport/runtime/scheduling/jobscheduling/SchedulerConfig.java
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,8 @@ public abstract static class Builder {
Copy file name to clipboardExpand all lines: transport/transport-runtime/src/test/java/com/google/android/datatransport/runtime/scheduling/jobscheduling/SchedulerConfigTest.java
+22-16Lines changed: 22 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@
34
34
publicclassSchedulerConfigTest {
35
35
36
36
privatestaticfinalintDELTA = 10;
37
-
privatestaticfinalintMAX_DELAY = 100;
37
+
privatestaticfinalintMAX_DELAY = 86400;
38
38
privatefinalClockCLOCK = newTestClock(0);
39
39
40
40
@Test
@@ -64,13 +64,13 @@ public void build_whenNotAllPrioritiesSet_shouldThrow() {
0 commit comments