refactor: move debounce from AppState to Logger

Will allow to capture accurate timeout metrics.
This commit is contained in:
steve-chavez
2024-04-12 14:29:39 -05:00
committed by Steve Chavez
parent 2de32fc108
commit fbc4d565ca
3 changed files with 49 additions and 34 deletions
+5
View File
@@ -3759,3 +3759,8 @@ create aggregate test.outfunc_agg (anyelement) (
, stype = "pg/outfunc"
, sfunc = outfunc_trans
);
-- used for manual testing
create or replace function test.sleep(seconds double precision default 5) returns void as $$
select pg_sleep(seconds);
$$ language sql;