InvalidSignatureException after upgrade NodeJS 20 to 22 in AWS lambda

Hi everyone, I am facing with problem when upgrade to nodeJS 22 that i have a lambda call to another lambda via axios, the error send back with error 502, when i check the cloud watch in lambda receive call it throw error like this

{
“errorType”: “Runtime.UnhandledPromiseRejection”,
“errorMessage”: “InvalidSignatureException: Signature expired: 20251103T110018Z is now earlier than 20251103T110817Z (20251103T112317Z - 15 min.)”,
“trace”: [
“Runtime.UnhandledPromiseRejection: InvalidSignatureException: Signature expired: 20251103T110018Z is now earlier than 20251103T110817Z (20251103T112317Z - 15 min.)”,
" at process. (file:///var/runtime/index.mjs:1448:17)“,
" at process.emit (node:events:518:28)”,
" at emitUnhandledRejection (node:internal/process/promises:252:13)“,
" at throwUnhandledRejectionsMode (node:internal/process/promises:388:19)”,
" at processPromiseRejections (node:internal/process/promises:475:17)“,
" at process.processTicksAndRejections (node:internal/process/task_queues:106:32)”
]
}

Please help me. Thanks you.