Skip to content

Commit 8d42852

Browse files
committed
Extend expiry time
1 parent 3eb0d8f commit 8d42852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/test/backups.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('backups', async () => {
3535
async function createTestBackup(backupId) {
3636
const [backup, operation] = await cluster.createBackup(backupId, {
3737
table,
38-
expireTime: new Date(Date.now() + 60 * 60 * 1000), // 1 hour from now
38+
expireTime: new Date(Date.now() + 12 * 60 * 60 * 1000), // 1 hour from now
3939
});
4040
await operation.promise();
4141
return backup;

0 commit comments

Comments
 (0)