mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-23 16:58:41 +00:00
Compare commits
2 Commits
8720fb3079
...
8f3120c3f0
Author | SHA1 | Date | |
---|---|---|---|
8f3120c3f0 | |||
8d7be35797 |
@ -163,7 +163,7 @@ export default async function daemon(config: UOJConfig) {
|
|||||||
status: 'Judged',
|
status: 'Judged',
|
||||||
score: 0,
|
score: 0,
|
||||||
error: 'Judgment Failed',
|
error: 'Judgment Failed',
|
||||||
details: `<error>${htmlspecialchars(err.message)}</error>`,
|
details: `<error>${htmlspecialchars(err.stack)}</error>`,
|
||||||
}),
|
}),
|
||||||
judge_time,
|
judge_time,
|
||||||
});
|
});
|
||||||
|
@ -39,7 +39,7 @@ class AccountService {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
logger.error(e);
|
logger.error(e);
|
||||||
|
|
||||||
await end({ error: true, status: 'Judgment Failed', message: e.message });
|
await end({ error: true, status: 'Judgment Failed', message: e.stack });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ if ($type == 'luogu') {
|
|||||||
}, 3);
|
}, 3);
|
||||||
} else if ($type == 'loj') {
|
} else if ($type == 'loj') {
|
||||||
retry_loop(function () use (&$curl, &$res) {
|
retry_loop(function () use (&$curl, &$res) {
|
||||||
$curl->get('https://api.loj.ac.cn/api/auth/getSessionInfo?token=' . UOJRequest::post('token', 'is_string', ''));
|
$curl->get('https://api.loj.ac/api/auth/getSessionInfo?token=' . UOJRequest::post('token', 'is_string', ''));
|
||||||
|
|
||||||
if ($curl->error) {
|
if ($curl->error) {
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user