Increase timeouts

This commit is contained in:
Alex Gleason
2024-07-01 23:05:03 +01:00
parent 3ae6d39ebc
commit ae687bb525
2 changed files with 2 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ function connectStream(socket: WebSocket) {
const pubsub = await Storages.pubsub();
try {
for (const event of await store.query(filters, { limit: FILTER_LIMIT, timeout: 300 })) {
for (const event of await store.query(filters, { limit: FILTER_LIMIT, timeout: 1000 })) {
send(['EVENT', subId, event]);
}
} catch (e) {