Created a timeout for starting webhook mode to allow traefik to expose the webhook server and assign an SSL cert.
All checks were successful
Main / build-and-push-docker-image (20.x) (push) Successful in 3m7s

This commit is contained in:
2025-10-21 00:03:21 -04:00
parent bfc0f1e59a
commit 1b38aad76a

View File

@@ -84,7 +84,7 @@ async function startWebhook(config: WebhookConfig) {
url: config.botWebhook
});
});
}, 25000);
}, 60000);
});
}