We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de68d65 commit 3a7d529Copy full SHA for 3a7d529
1 file changed
app/main.py
@@ -461,16 +461,18 @@ async def api_services_deployed(request: Request) -> list[dict[str, Any]]:
461
for c in containers:
462
slug = c.get("slug", "")
463
if slug:
464
- statuses.append({
465
- "slug": slug,
466
- "name": c.get("name", slug),
467
- "status": c.get("status", "unknown"),
468
- "image": c.get("image", ""),
469
- "cpu_percent": c.get("cpu_percent", 0),
470
- "memory_mb": c.get("memory_mb", 0),
471
- "category": "",
472
- "deployed_by": w.get("name", "worker"),
473
- })
+ statuses.append(
+ {
+ "slug": slug,
+ "name": c.get("name", slug),
+ "status": c.get("status", "unknown"),
+ "image": c.get("image", ""),
+ "cpu_percent": c.get("cpu_percent", 0),
+ "memory_mb": c.get("memory_mb", 0),
+ "category": "",
+ "deployed_by": w.get("name", "worker"),
474
+ }
475
+ )
476
477
# Get latest earnings per platform for balance display
478
earnings = await database.get_earnings_summary()
0 commit comments