>_
.issue.db
/highway-workflow-engine
Dashboard
Issues
Memory
Lessons
Audit Log
New Issue
Edit Issue #516
Update issue details
Title *
Description
**Files:** - engine/apps/executor.py:841 - engine/services/event_gateway_service.py:625 **Problem:** List literals for sensitive keywords created repeatedly in loops. Should be module-level frozenset for O(1) lookup. **Current:** ```python if any(s in key_lower for s in ["secret", "password", "token", "key", "auth"]): ``` **Fix:** ```python # Module level _SENSITIVE_KEY_PATTERNS = frozenset(["secret", "password", "token", "key", "auth"]) # In function if any(s in key_lower for s in _SENSITIVE_KEY_PATTERNS): ``` **Impact:** Minor performance improvement, better code style.
Priority
Low
Medium
High
Critical
Status
Open
In Progress
Closed
Won't Do
Due Date (YYYY-MM-DD)
Tags (comma separated)
Related Issues (IDs)
Enter IDs of issues related to this one. They will be linked as 'related'.
Update Issue
Cancel