Browse Source

Merge pull request #7830 from nocodb/nc-fix/webhook-timeout

fix: add timeout to webhook calls
pull/7835/head
Pranav C 4 months ago committed by GitHub
parent
commit
aa1d285259
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      packages/nocodb/src/helpers/webhookHelpers.ts

1
packages/nocodb/src/helpers/webhookHelpers.ts

@ -436,6 +436,7 @@ export function axiosRequestMake(_apiMeta, _user, data) {
}),
}
: {}),
timeout: 30 * 1000,
};
return req;
}

Loading…
Cancel
Save