feat(guestbook): renew request token every 30 sec instead of 10 sec for posting
All checks were successful
create archive with lfs / tag (push) Successful in 10s

This commit is contained in:
dusk 2024-11-10 05:06:33 +09:00
parent a2e6eb2af4
commit a20cccefa8
Signed by: dusk
SSH Key Fingerprint: SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw

View File

@ -55,4 +55,4 @@ class GuestbookRoutes(
} yield resp
}
throttle(30, 2.seconds)(getEntries)
<+> throttle(5, 10.seconds)(putEntry)
<+> throttle(5, 30.seconds)(putEntry)