From 7169e47ba07a023c6b54cc65f0fbd0dab1007998 Mon Sep 17 00:00:00 2001 From: nurullah Date: Mon, 3 Nov 2025 14:42:10 +0600 Subject: [PATCH] test-webhook api set 1500s --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 9f9150b..aad4a1d 100644 --- a/index.js +++ b/index.js @@ -48,7 +48,7 @@ app.get("/test-webhook", (req, res) => { // 55 sec = 55*1000 = 55000 milliseconds setTimeout(() => { res.status(200).send({ message: "Webhook received after 3 minutes!" }); - }, 55000); + }, 15000); }); const PORT = process.env.PORT || 4000;