1 parent 548fb54 commit 746ed74Copy full SHA for 746ed74
1 file changed
packages/llmd-serving/src/deployments/status.ts
@@ -117,7 +117,7 @@ export const calculateGracePeriod = (lastActivity?: Date): boolean => {
117
return false;
118
}
119
const now = Date.now();
120
- const idleTime = new Date(lastActivity).setSeconds(lastActivity.getSeconds() + 180);
+ const idleTime = new Date(lastActivity).setSeconds(lastActivity.getSeconds() + 600);
121
// Return true if we're still within grace period
122
return idleTime - now > 0;
123
};
0 commit comments