mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 02:28:42 +00:00
fix(remote_judger/qoj): add retry
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
f1db47df38
commit
70669fbf48
@ -215,7 +215,7 @@ export default class QOJProvider extends UOJProvider implements IBasicProvider {
|
|||||||
|
|
||||||
const { text: status } = await this.get(
|
const { text: status } = await this.get(
|
||||||
`/submissions?problem_id=${id}&submitter=${this.account.handle}`
|
`/submissions?problem_id=${id}&submitter=${this.account.handle}`
|
||||||
);
|
).retry(3);
|
||||||
|
|
||||||
const $dom = new JSDOM(status);
|
const $dom = new JSDOM(status);
|
||||||
|
|
||||||
@ -228,12 +228,12 @@ export default class QOJProvider extends UOJProvider implements IBasicProvider {
|
|||||||
let count = 0;
|
let count = 0;
|
||||||
let fail = 0;
|
let fail = 0;
|
||||||
|
|
||||||
while (count < 180 && fail < 10) {
|
while (count < 180 && fail < 60) {
|
||||||
count++;
|
count++;
|
||||||
await sleep(1000);
|
await sleep(1000);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { text } = await this.get(`/submission/${id}`);
|
const { text } = await this.get(`/submission/${id}`).retry(3);
|
||||||
const {
|
const {
|
||||||
window: { document },
|
window: { document },
|
||||||
} = new JSDOM(text);
|
} = new JSDOM(text);
|
||||||
|
Loading…
Reference in New Issue
Block a user