Skip to content

Commit 500c263

Browse files
committed
Fix documentation: rename oauth file and correct test commands
- Rename oauth-patterns.md to oauth-architecture-patterns.md for clarity - Fix session-ownership.md test commands to run from mcp-server directory - Update redisTransport.ts path reference to include mcp-server prefix
1 parent 5482d90 commit 500c263

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

File renamed without changes.

docs/session-ownership.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ When an MCP server starts handling a session, it subscribes to the channel. When
7676

7777
## Implementation
7878

79-
### Core Functions (src/services/redisTransport.ts)
79+
### Core Functions (mcp-server/src/services/redisTransport.ts)
8080

8181
```typescript
8282
export async function setSessionOwner(sessionId: string, userId: string): Promise<void>
@@ -135,8 +135,11 @@ redis-cli MONITOR | grep "session:"
135135
## Testing
136136

137137
```bash
138-
npm test -- --testNamePattern="User Session Isolation"
139-
npm test -- --testNamePattern="session ownership"
138+
# Run from mcp-server directory to test session isolation
139+
cd mcp-server && npm test -- --testNamePattern="User Session Isolation"
140+
141+
# Run from mcp-server directory to test session ownership
142+
cd mcp-server && npm test -- --testNamePattern="Session Ownership"
140143
```
141144

142145
## References

0 commit comments

Comments
 (0)