Skip to content
Dashboard

Dynamically extend timeout of an active Sandbox

const sandbox = await Sandbox.create({
// 15 minute timeout
timeout: 15 * 60 * 1000,
});
// Extend by 10 minutes
await sandbox.extendTimeout(10 * 60 * 1000);

Ready to deploy?