Aditya Guntur Claude Sonnet 4.6 commited on
Commit
42466e3
·
1 Parent(s): dab7b94

Add SUPPORTS_CONCURRENT_SESSIONS=True to PMOpsEnvironment

Browse files

Each instance has fully isolated state (ticketing/chat/codebase are
per-instance), so concurrent sessions are safe.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. server/pm_ops_environment.py +2 -0
server/pm_ops_environment.py CHANGED
@@ -35,6 +35,8 @@ def _oracle_check(scenario: Dict[str, Any]) -> bool:
35
 
36
 
37
  class PMOpsEnvironment:
 
 
38
  def __init__(self):
39
  self._ticketing: Optional[TicketingApp] = None
40
  self._codebase: Optional[CodebaseApp] = None
 
35
 
36
 
37
  class PMOpsEnvironment:
38
+ SUPPORTS_CONCURRENT_SESSIONS = True
39
+
40
  def __init__(self):
41
  self._ticketing: Optional[TicketingApp] = None
42
  self._codebase: Optional[CodebaseApp] = None