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
When not provided, we previously used unrestricted `from` and `to`
parameters when reading from the DB. This can create issues when
accidentally reading too much data.
We now limit this to the last 24 hours, unless explicitly set by the
caller. Note that when reading a lot of data, it's recommended to use
postgres and read from a replica to ensure there's no impact on the running
eclair instance.
Fixes#2383
eclair.audit(argThat[TimestampSecond](t => from -1.minute <= t && t <= from +1.minute), argThat[TimestampSecond](t => to -1.minute <= t && t <= to +1.minute))(any[Timeout]).wasCalled(once)
0 commit comments