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
Use from_seconds() to avoid integer rounding (#1560) (#1561)
FootprintSubscriber constructor is using a Duration constructor that
expects two integers for seconds and nanoseconds, but the
footprint_timeout argument type is double, suggesting it should be
floating point seconds. This uses `Duration::from_seconds()` to the
timeout being rounded down to the next integer.
Signed-off-by: Shane Loretz <[email protected]>
Signed-off-by: Shane Loretz <[email protected]>
0 commit comments