Skip to content

Commit 7d95613

Browse files
fix broken links
1 parent b956764 commit 7d95613

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

articles/container-apps/session-pool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.topic: conceptual
8-
ms.date: 02/14/2025
8+
ms.date: 02/19/2025
99
ms.author: cshoe
1010
---
1111

@@ -267,7 +267,7 @@ This template creates a session pool with the following settings:
267267
> [!IMPORTANT]
268268
> The session identifier is sensitive information which requires a secure process as you create and manage its value. To protect this value, your application must ensure each user or tenant only has access to their own sessions.
269269
>
270-
> Failure to secure access to sessions could result in misuse or unauthorized access to data stored in your users' sessions. For more information, see [Session identifiers](./sessions-usage.md#session-identifiers)
270+
> Failure to secure access to sessions could result in misuse or unauthorized access to data stored in your users' sessions. For more information, see [Session identifiers](./sessions-usage.md#identifiers)
271271
272272
The following endpoints are available for managing sessions in a pool:
273273

@@ -294,7 +294,7 @@ az containerapp sessionpool show \
294294

295295
All requests to the pool management endpoint must include an `Authorization` header with a bearer token. To learn how to authenticate with the pool management API, see [Authentication](sessions-usage.md#authentication).
296296

297-
Each API request must also include the query string parameter `identifier` with the session ID. This unique session ID enables your application to interact with specific sessions. To learn more about session identifiers, see [Session identifiers](sessions-usage.md#session-identifiers).
297+
Each API request must also include the query string parameter `identifier` with the session ID. This unique session ID enables your application to interact with specific sessions. To learn more about session identifiers, see [Session identifiers](sessions-usage.md#identifiers).
298298

299299
## Image caching
300300

articles/container-apps/sessions-code-interpreter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.topic: how-to
8-
ms.date: 02/14/2025
8+
ms.date: 02/19/2025
99
ms.author: cshoe
1010
ms.custom: references_regions
1111
ms.collection: ce-skilling-ai-copilot
@@ -54,9 +54,9 @@ After you create a session pool, your application can interact with sessions in
5454
> [!IMPORTANT]
5555
> The session identifier is sensitive information which requires you to use a secure process to manage its value. Part of this process requires that your application ensures each user or tenant only has access to their own sessions.
5656
>
57-
> Failure to secure access to sessions could result in misuse or unauthorized access to data stored in your users' sessions. For more information, see [Session identifiers](sessions-usage.md#session-identifiers).
57+
> Failure to secure access to sessions could result in misuse or unauthorized access to data stored in your users' sessions. For more information, see [Session identifiers](sessions-usage.md#identifiers).
5858
59-
When you interact with sessions in a pool, you use a [session identifier](sessions-usage.md#session-identifiers) to reference each session A session identifier is a string that you define that is unique within the session pool. If you're building a web application, you can use the user's ID. If you're building a chatbot, you can use the conversation ID.
59+
When you interact with sessions in a pool, you use a [session identifier](sessions-usage.md#identifiers) to reference each session A session identifier is a string that you define that is unique within the session pool. If you're building a web application, you can use the user's ID. If you're building a chatbot, you can use the conversation ID.
6060

6161
If there's a running session with the identifier, the session is reused. If there's no running session with the identifier, a new session is automatically created.
6262

articles/container-apps/sessions-custom-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: azure-container-apps
77
ms.custom:
88
- ignite-2024
99
ms.topic: conceptual
10-
ms.date: 02/14/2025
10+
ms.date: 02/19/2025
1111
ms.author: cshoe
1212
ms.collection: ce-skilling-ai-copilot
1313
---

articles/container-apps/sessions-tutorial-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: IshitaAsthana
66
ms.service: azure-container-apps
77
ms.topic: tutorial
8-
ms.date: 11/08/2024
8+
ms.date: 02/19/2025
99
ms.author: iasthana
1010
---
1111

articles/container-apps/sessions-usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.topic: conceptual
8-
ms.date: 02/14/2025
8+
ms.date: 02/19/2025
99
ms.author: cshoe
1010
ms.custom: references_regions, ignite-2024
1111
---
@@ -26,7 +26,7 @@ A pool management endpoint follows this format:
2626
https://<SESSION_POOL_NAME>.<ENVIRONMENT_ID>.<REGION>.azurecontainerapps.io
2727
```
2828

29-
For more information managing session pools, see [session pools management endpoint](./session-pools.md#management-endpoint)
29+
For more information managing session pools, see [session pools management endpoint](./session-pool.md#management-endpoint)
3030

3131
## Forwarding requests to a session's container
3232

articles/container-apps/sessions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.topic: conceptual
8-
ms.date: 02/14/2025
8+
ms.date: 02/19/2025
99
ms.author: cshoe
1010
ms.custom: references_regions, ignite-2024
1111
---
@@ -65,7 +65,7 @@ The following states define this lifecycle:
6565

6666
1. **Unallocated**: Once a session is done starting up, it's added to the pool and becomes available for allocation. For custom container sessions, you can specify how many ready sessions to maintain in the pool. This number should be increased if sessions are allocated faster than they're replenished.
6767

68-
1. **Allocated**: When you send a request to a nonrunning session, the pool provides a new session and places it in an allocated state. Subsequent requests with the same session identifier are routed to the same session, allowing for efficient reuse without cold starts. Each allocated session is associated with a [session identifier](./sessions-usage.md#session-identifiers).
68+
1. **Allocated**: When you send a request to a nonrunning session, the pool provides a new session and places it in an allocated state. Subsequent requests with the same session identifier are routed to the same session, allowing for efficient reuse without cold starts. Each allocated session is associated with a [session identifier](./sessions-usage.md#identifiers).
6969

7070
1. **Destroyed**: If a session doesn't receive requests for a duration defined by the `cooldownPeriodInSeconds` setting, the session and its Hyper-V sandbox are securely deleted. This automatic cleanup setup enhances resource management and security.
7171

0 commit comments

Comments
 (0)