Skip to content

Commit

Permalink
chore: 延长默认时间到20
Browse files Browse the repository at this point in the history
  • Loading branch information
14790897 committed Sep 20, 2024
1 parent 68bbcd6 commit bdeb55b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bypasscf.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if (fs.existsSync(".env.local")) {
}

// 读取以分钟为单位的运行时间限制
const runTimeLimitMinutes = process.env.RUN_TIME_LIMIT_MINUTES || 15;
const runTimeLimitMinutes = process.env.RUN_TIME_LIMIT_MINUTES || 20;

// 将分钟转换为毫秒
const runTimeLimitMillis = runTimeLimitMinutes * 60 * 1000;
Expand Down
2 changes: 1 addition & 1 deletion bypasscf_likeUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if (fs.existsSync(".env.local")) {
}

// 读取以分钟为单位的运行时间限制
const runTimeLimitMinutes = process.env.RUN_TIME_LIMIT_MINUTES || 15;
const runTimeLimitMinutes = process.env.RUN_TIME_LIMIT_MINUTES || 20;

// 将分钟转换为毫秒
const runTimeLimitMillis = runTimeLimitMinutes * 60 * 1000;
Expand Down

0 comments on commit bdeb55b

Please sign in to comment.