fix(ui): extend integration poll timeouts to 60s (#11519)

This commit is contained in:
Alan Buscaglia
2026-06-10 10:34:50 +02:00
committed by GitHub
parent 9a50dffaa0
commit a21cb64a94
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -54,6 +54,7 @@ All notable changes to the **Prowler UI** are documented in this file.
- Compliance page now loads the most recent scan when opened from the sidebar instead of showing the "no compliance data available" alert [(#11374)](https://github.com/prowler-cloud/prowler/pull/11374)
- Invitation links now show specific expired, no-longer-valid, and invalid-token messages based on API error responses [(#11376)](https://github.com/prowler-cloud/prowler/pull/11376)
- Jira dispatch and provider connection-test polling no longer show a false timeout for longer-running tasks; both poll windows now extend to 60 seconds [(#11519)](https://github.com/prowler-cloud/prowler/pull/11519)
### 🔐 Security
+1 -1
View File
@@ -286,7 +286,7 @@ const pollTaskUntilComplete = async (
taskId: string,
): Promise<PollConnectionResult> => {
const settled = await pollTaskUntilSettled<ConnectionTaskResult>(taskId, {
maxAttempts: 10,
maxAttempts: 20,
delayMs: 3000,
});
+1 -1
View File
@@ -148,7 +148,7 @@ export const pollJiraDispatchTask = async (
{ success: true; message: string } | { success: false; error: string }
> => {
const res = await pollTaskUntilSettled(taskId, {
maxAttempts: 10,
maxAttempts: 30,
delayMs: 2000,
});
if (!res.ok) {