expiry field in its JSON payload that is populated with Date.now() + 60000 (so the request expires 1 minute after it is created and sent). My CF Worker is set up such that if Date.now() > expiry, then the request is rejected. (this is for request signing, implemented very similarly to this example: https://developers.cloudflare.com/workers/examples/signing-requests/)Mon, 11 Dec 2023 05:02:55 GMT from GitHub Actions to the CF Worker endpoint, but it was picked up by the CF Worker at Mon Dec 11 2023 05:04:05 GMT . This is seen from the "Real-Time Logs" feature within my CF Worker dashboard (and therefore the request is now expired).In Workers, you can get the current time using the JavaScript Date API by calling. However, the time value returned is not the current time.Date.now()returns the time of the last I/O. It does not advance during code execution.Date.now()
