Clear Filters
ID Title Status Priority Created Due Date Actions
#499 Performance: Regex compiled inside hot path (steps)
api/blueprints/v1/steps.py:377 - re.compile() called on every log search request. FIX: Module-level ...
closed medium 2025-12-17 02:57 -
#498 Memory: Days filter unbounded query DoS
api/blueprints/v1/workflows.py:814-885 - No upper bound on days param. User can request days=36500 l...
closed medium 2025-12-17 02:57 -
#497 Memory: DataShard table unbounded loading
api/blueprints/v1/logs.py:90-119 - _read_table_to_pandas loads ENTIRE parquet tables. No pagination ...
closed medium 2025-12-17 02:57 -
#496 Race: Workflow definition hash collision
api/blueprints/v1/workflows.py:236-256 - Concurrent submissions of same workflow can fail. FIX: Use ...
closed medium 2025-12-17 02:57 -
#495 Race: App installation duplicate
api/blueprints/v1/tenant_apps.py:174-200 - TOCTOU in SELECT-then-INSERT. Concurrent installs cause 5...
closed medium 2025-12-17 02:57 -
#494 Race: Signal duplicate send without idempotency
api/blueprints/v1/signals.py:33-64 - Concurrent POST /signals can create duplicate signals. FIX: Add...
closed medium 2025-12-17 02:57 -
#489 Memory: Vault cache expired entries never proactively removed
engine/config.py:82 - _vault_cache entries checked on read but expired entries never proactively cle...
closed medium 2025-12-17 02:25 -
#486 Performance: Inefficient double iteration in secret_manager cache eviction
engine/services/secret_manager.py:342 - List comprehension extracts keys from already-converted list...
closed medium 2025-12-17 02:25 -
#485 Performance: Unnecessary list() in activity_worker futures
engine/services/activity_worker.py:605 - list(futures_snapshot.items()) on already-snapshotted dict....
closed medium 2025-12-17 02:25 -
#484 Performance: Unnecessary list() in db.py singleton cleanup
engine/db.py:532 - list(SingletonMeta._instances.values()) when no modification during iteration. FI...
closed medium 2025-12-17 02:25 -
#483 Race Condition: SidecarTelemetry __init__ attribute race
engine/sidecar_telemetry.py:74-90 - Singleton __init__ called every time. _initialized check not ato...
closed medium 2025-12-17 02:25 -
#482 Performance: Regex not pre-compiled in durable_context.py
engine/durable_context.py:1621 - Regex pattern compiled inline. FIX: Pre-compile at module level.
closed medium 2025-12-17 02:25 -
#479 Performance: Inefficient last-key access with tuple(dict.keys())[-1]
engine/interpreters/inline_executor.py:690,893 Getting last key via tuple conversion is inefficient...
closed medium 2025-12-17 01:42 -
#477 Memory Leak: Tool registry never cleaned
engine/tools/registry.py:103-104 ToolRegistry._tools dict grows unbounded: - App tools added dynami...
closed medium 2025-12-17 01:42 -
#476 Race Condition: Cache eviction KeyError in activity_worker and config
engine/services/activity_worker.py:105-126 engine/config.py:632-644 Cache eviction can raise KeyErr...
closed medium 2025-12-17 01:42 -
#475 Race Condition: File deduplication missing ON CONFLICT
engine/services/storage_service.py:114-131 File store deduplication has TOCTOU race: 1. Store file ...
closed medium 2025-12-17 01:42 -
#470 Code Quality: Module constant lists should be tuples for immutability
Three module-level constants are defined as lists but never modified. Should be tuples: 1. engine/s...
closed medium 2025-12-17 01:11 -
#468 Performance: Regex compiled on every call in operators.py and variable_resolver.py
Multiple hot-path functions compile regex patterns on every call instead of once: 1. engine/interpr...
closed medium 2025-12-17 01:11 -
#467 Race Condition: notification_count increment without lock in activity_worker.py
engine/services/activity_worker.py:252-254 increments notification_count without synchronization. I...
closed medium 2025-12-17 01:11 -
#466 Race Condition: _last_cache_check_time modified without lock in http_request.py
engine/tools/http_request.py:209-231 modifies module-level _last_cache_check_time without synchroniz...
closed medium 2025-12-17 01:11 -
Previous Page 4 of 11 Next