We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ba99f commit a7bb2ddCopy full SHA for a7bb2dd
scripts/maintenance/computational-clusters/autoscaled_monitor/ssh.py
@@ -265,7 +265,11 @@ def _needs_manual_intervention(
265
user_id=containers[0].user_id,
266
project_id=containers[0].project_id,
267
created_at=containers[0].created_at,
268
- needs_manual_intervention=_needs_manual_intervention(containers),
+ needs_manual_intervention=_needs_manual_intervention(containers)
269
+ and (
270
+ (containers[0].created_at - arrow.utcnow().datetime)
271
+ > datetime.timedelta(minutes=2)
272
+ ),
273
containers=[c.name for c in containers],
274
service_name=containers[0].service_name,
275
service_version=containers[0].service_version,
0 commit comments