Skip to content

Commit bbecf7b

Browse files
committed
fix
1 parent b11ce03 commit bbecf7b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

articles/service-connector/includes/code-redis-me-id.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: xfz11
3-
description: code example
3+
description: Code example
44
ms.service: service-connector
55
ms.topic: include
66
ms.date: 1/2/2025
@@ -13,7 +13,7 @@ ms.author: xiaofanzhou
1313
```bash
1414
dotnet add package Microsoft.Azure.StackExchangeRedis --version 3.2.0
1515
```
16-
1. Get the Redis connection string from the environment variable added by Service Connector. For more information, see [Microsoft.Azure.StackExchangeRedis Extension](https://github.com/Azure/Microsoft.Azure.StackExchangeRedis).
16+
1. Add the authentication logic with environment variables set by Service Connector. For more information, see [Microsoft.Azure.StackExchangeRedis Extension](https://github.com/Azure/Microsoft.Azure.StackExchangeRedis).
1717

1818

1919
```csharp
@@ -55,7 +55,7 @@ ms.author: xiaofanzhou
5555
<version>5.1.0</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
5656
</dependency>
5757
```
58-
1. Get the Redis connection string from the environment variable added by Service Connector. For more information, see [Azure-AAD-Authentication-With-Jedis](https://aka.ms/redis/aad/sample-code/java-jedis).
58+
1. Add the authentication logic with environment variables set by Service Connector. For more information, see [Azure-AAD-Authentication-With-Jedis](https://aka.ms/redis/aad/sample-code/java-jedis).
5959
```java
6060
import redis.clients.jedis.DefaultJedisClientConfig;
6161
import redis.clients.jedis.Jedis;
@@ -112,7 +112,7 @@ ms.author: xiaofanzhou
112112
```bash
113113
pip install redis azure-identity
114114
```
115-
1. Get the Redis connection string from the environment variable added by Service Connector. For more information, see [azure-aad-auth-with-redis-py](https://aka.ms/redis/aad/sample-code/python).
115+
1. Add the authentication logic with environment variables set by Service Connector. For more information, see [azure-aad-auth-with-redis-py](https://aka.ms/redis/aad/sample-code/python).
116116
```python
117117
import os
118118
import time

articles/service-connector/includes/code-redis-secret.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: wchigit
3-
description: code example
3+
description: Code example
44
ms.service: service-connector
55
ms.topic: include
66
ms.date: 10/24/2023
@@ -13,7 +13,7 @@ ms.author: wchi
1313
```bash
1414
dotnet add package StackExchange.Redis --version 2.6.122
1515
```
16-
1. Get the Redis connection string from the environment variable added by Service Connector.
16+
1. Get the connection string from the environment variable added by Service Connector.
1717

1818
```csharp
1919
using StackExchange.Redis;
@@ -33,7 +33,7 @@ ms.author: wchi
3333
<scope>compile</scope>
3434
</dependency>
3535
```
36-
1. Get the Redis connection string from the environment variable added by Service Connector.
36+
1. Get the connection string from the environment variable added by Service Connector.
3737
```java
3838
import redis.clients.jedis.DefaultJedisClientConfig;
3939
import redis.clients.jedis.Jedis;
@@ -57,7 +57,7 @@ Refer to [Use Azure Redis Cache in Spring](/azure/developer/java/spring-framewor
5757
```bash
5858
pip install redis
5959
```
60-
1. Get the Redis connection string from the environment variable added by Service Connector.
60+
1. Get the connection string from the environment variable added by Service Connector.
6161
```python
6262
import os
6363
import redis
@@ -73,7 +73,7 @@ Refer to [Use Azure Redis Cache in Spring](/azure/developer/java/spring-framewor
7373
```bash
7474
go get github.com/redis/go-redis/v9
7575
```
76-
1. Get the Redis connection string from the environment variable added by Service Connector.
76+
1. Get the connection string from the environment variable added by Service Connector.
7777
```go
7878
import (
7979
"context"
@@ -97,7 +97,7 @@ Refer to [Use Azure Redis Cache in Spring](/azure/developer/java/spring-framewor
9797
```bash
9898
npm install redis
9999
```
100-
1. Get the Redis connection string from the environment variable added by Service Connector.
100+
1. Get the connection string from the environment variable added by Service Connector.
101101
102102
```javascript
103103
const redis = require("redis");

0 commit comments

Comments
 (0)