Fix timeout
This commit is contained in:
@@ -98155,7 +98155,7 @@ var DEFAULT_REPO_SETTINGS = {
|
||||
};
|
||||
async function fetchWorkflowRunInfo(runId) {
|
||||
const apiUrl = process.env.API_URL || "https://pullfrog.com";
|
||||
const timeoutMs = 5e3;
|
||||
const timeoutMs = 3e4;
|
||||
const controller = new AbortController();
|
||||
const timeoutId = setTimeout(() => controller.abort(), timeoutMs);
|
||||
try {
|
||||
@@ -98186,7 +98186,7 @@ async function fetchRepoSettings({
|
||||
}
|
||||
async function getRepoSettings(token, repoContext) {
|
||||
const apiUrl = process.env.API_URL || "https://pullfrog.com";
|
||||
const timeoutMs = 5e3;
|
||||
const timeoutMs = 3e4;
|
||||
const controller = new AbortController();
|
||||
const timeoutId = setTimeout(() => controller.abort(), timeoutMs);
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user