Compare commits

...

3 Commits

Author SHA1 Message Date
Book Pauk
a9a3227433 Merge branch 'release/0.11.8-4' 2022-07-17 16:53:59 +07:00
Book Pauk
60cb3514b2 Тюнинг таймаутов 2022-07-17 16:53:12 +07:00
Book Pauk
4aeaa05f0b Merge tag '0.11.8-3' into develop
0.11.8-3
2022-07-17 15:58:34 +07:00

View File

@@ -15,7 +15,8 @@ class RemoteStorage {
async wsQuery(query) {
const response = await this.wsc.message(
await this.wsc.send(Object.assign({accessToken: this.accessToken}, query))
await this.wsc.send(Object.assign({accessToken: this.accessToken}, query), 30),
300
);
if (response.error)
throw new Error(response.error);