Skip to content

Commit e3ef4b2

Browse files
Apply suggestions from code review
Co-authored-by: Craig Shoemaker <[email protected]>
1 parent 92c7850 commit e3ef4b2

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

articles/container-apps/session-pool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ Custom container pools support the same management endpoints as code interpreter
212212

213213
| Endpoint path | Method | Description |
214214
|----------|--------|-------------|
215-
| `*` (custom paths) | `POST`, `GET`, etc. | Custom endpoints defined by your container application. |
215+
| `*` (custom paths) | `POST`, `GET` | Custom endpoints defined by your container application. |
216216
| `.management/getSession` | `POST` | Get details about a specific session. |
217217
| `.management/listSessions` | `POST` | List all sessions in the pool with pagination. |
218218

articles/container-apps/sessions-usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ The `getSession` endpoint returns session metadata including the session identif
9797
| Field | Type | Required | Description |
9898
|-------|------|----------|-------------|
9999
| `identifier` | string | Yes | The session identifier you provided |
100-
| `etag` | string | Yes | Opaque version identifier for the session; can be used for change detection |
100+
| `etag` | string | Yes | Opaque version identifier for the session. You can use this identifier for change detection. |
101101
| `expiresAt` | DateTime | Yes | UTC timestamp when the session will be terminated |
102102
| `createdAt` | DateTime | No | Session creation timestamp |
103103
| `lastAccessedAt` | DateTime | No | Timestamp of the last request to this session |
@@ -202,7 +202,7 @@ When an error occurs, the API returns a structured error response with details t
202202

203203
### Common error codes
204204

205-
| Error Code | HTTP Status | Description | Resolution |
205+
| Error Code | HTTP status | Description | Resolution |
206206
|------------|-------------|-------------|-----------|
207207
| `SessionWithIdentifierNotFound` | 400 | The session identifier doesn't exist in this session pool | Verify the session identifier is correct and the session hasn't expired |
208208
| `SessionRequestValidationFailed` | 400 | The request is missing required fields or has invalid parameters | Check the query parameters (identifier, skip, api-version) are properly formatted |

articles/container-apps/sessions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,5 @@ Dynamic sessions are designed to run untrusted code in isolated environments. Fo
9696
Custom container sessions are billed based on the resources consumed by the session pool. For more information, see [Azure Container Apps billing](./billing.md#dynamic-sessions).
9797

9898

99-
## Next steps
99+
## Related content
100100
- Learn how to configure [session pools](./session-pool.md)

0 commit comments

Comments
 (0)