feat(core): support rpc timeouts
This commit is contained in:
parent
fd1897651b
commit
a6217c682d
2 changed files with 14 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
@ -78,6 +78,15 @@ const inheritanceTable = {
|
||||||
500: 'InternalError',
|
500: 'InternalError',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const customErrors = [
|
||||||
|
{
|
||||||
|
virtual: true,
|
||||||
|
name: 'RPC_TIMEOUT',
|
||||||
|
codes: '408',
|
||||||
|
description: 'Timeout of {ms} ms exceeded'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
// relying on slightly more exhaustive than official docs errors.csv from telethon
|
// relying on slightly more exhaustive than official docs errors.csv from telethon
|
||||||
const csvText = await fetch(
|
const csvText = await fetch(
|
||||||
|
@ -93,6 +102,8 @@ async function main() {
|
||||||
.on('error', reject)
|
.on('error', reject)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
csv.push(...customErrors)
|
||||||
|
|
||||||
js.write(`// This file was auto-generated. Do not edit!
|
js.write(`// This file was auto-generated. Do not edit!
|
||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
@ -183,7 +194,7 @@ exports.${className} = ${className}`)
|
||||||
|
|
||||||
js.write('const _staticNameErrors = {')
|
js.write('const _staticNameErrors = {')
|
||||||
js.tab()
|
js.tab()
|
||||||
csv.filter((i) => !i.name.match(/_X_|_X$|^X_/)).forEach((err) =>
|
csv.filter((i) => !i.virtual && !i.name.match(/_X_|_X$|^X_/)).forEach((err) =>
|
||||||
js.write(`'${err.name}': ${err.fclsname},`)
|
js.write(`'${err.name}': ${err.fclsname},`)
|
||||||
)
|
)
|
||||||
js.write(`'Timeout': TimeoutError,`)
|
js.write(`'Timeout': TimeoutError,`)
|
||||||
|
@ -194,7 +205,7 @@ exports.${className} = ${className}`)
|
||||||
|
|
||||||
let match;
|
let match;
|
||||||
${allErrors
|
${allErrors
|
||||||
.filter((i) => !!i.name.match(/_X_|_X$|^X_/))
|
.filter((i) => !i.virtual && !!i.name.match(/_X_|_X$|^X_/))
|
||||||
.map(
|
.map(
|
||||||
(i) =>
|
(i) =>
|
||||||
` if ((match = obj.errorMessage.match(/${i.name.replace(
|
` if ((match = obj.errorMessage.match(/${i.name.replace(
|
||||||
|
|
Loading…
Reference in a new issue