Make attachments more resilient, decrease websocket keepalive

This commit is contained in:
Scott Nonnenberg 2022-08-16 16:49:47 -07:00 committed by GitHub
parent ce77465d23
commit 932043c58f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 35 additions and 27 deletions

View file

@ -230,8 +230,8 @@ describe('WebSocket-Resource', () => {
assert.strictEqual(message.request?.path, '/');
assert.strictEqual(
Date.now(),
startTime + 60000,
'keepalive time should be one minute'
startTime + 30000 + 5000,
'keepalive time should be 35s'
);
done();
});