Skip to content

Commit 6485ea7

Browse files
remove leading space
1 parent 88d6c98 commit 6485ea7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/azure-app-configuration/howto-geo-replication.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Automatic replica discovery is enabled by default, but you can refer to the foll
9898

9999
Edit the call to the `AddAzureAppConfiguration` method, which is often found in the `program.cs` file of your application.
100100

101-
``` csharp
101+
```csharp
102102
configurationBuilder.AddAzureAppConfiguration(options =>
103103
{
104104
// Disable automatic replica discovery
@@ -118,7 +118,7 @@ configurationBuilder.AddAzureAppConfiguration(options =>
118118

119119
Specify the `replicaDiscoveryEnabled` property in the `bootstrap.properties` file of your application.
120120

121-
``` properties
121+
```properties
122122
spring.cloud.azure.appconfiguration.stores[0].replica-discovery-enabled=false
123123
```
124124

@@ -132,7 +132,7 @@ spring.cloud.azure.appconfiguration.stores[0].replica-discovery-enabled=false
132132

133133
Update the `AzureAppConfigurationProvider` resource of your Azure App Configuration Kubernetes Provider. Add a `replicaDiscoveryEnabled` property and set it to `false`.
134134

135-
``` yaml
135+
```yaml
136136
apiVersion: azconfig.io/v1
137137
kind: AzureAppConfigurationProvider
138138
metadata:
@@ -152,7 +152,7 @@ spec:
152152
Specify the `replica_discovery_enabled` property when loading the configuration store and set it to `False`.
153153

154154

155-
``` python
155+
```python
156156
config = load(endpoint=endpoint, credential=credential, replica_discovery_enabled=False)
157157
```
158158

@@ -164,7 +164,7 @@ config = load(endpoint=endpoint, credential=credential, replica_discovery_enable
164164
Specify the `AzureAppConfigurationOptions.replicaDiscoveryEnabled` property when loading the configuration store and set it to `false`.
165165

166166

167-
``` javascript
167+
```javascript
168168
const config = load(endpoint, credential, {
169169
replicaDiscoveryEnabled: false
170170
});
@@ -190,7 +190,7 @@ Edit the call to the `AddAzureAppConfiguration` method, which is often found in
190190

191191
**Connect with Microsoft Entra ID**
192192

193-
``` csharp
193+
```csharp
194194
configurationBuilder.AddAzureAppConfiguration(options =>
195195
{
196196
// Provide an ordered list of replica endpoints
@@ -207,7 +207,7 @@ configurationBuilder.AddAzureAppConfiguration(options =>
207207

208208
**Connect with Connection String**
209209

210-
``` csharp
210+
```csharp
211211
configurationBuilder.AddAzureAppConfiguration(options =>
212212
{
213213
// Provide an ordered list of replica connection strings
@@ -307,7 +307,7 @@ This feature isn't yet supported in the Azure App Configuration Java Spring Prov
307307

308308
Update the `AzureAppConfigurationProvider` resource of your Azure App Configuration Kubernetes Provider. Add a `loadBalancingEnabled` property and set it to `true`.
309309

310-
``` yaml
310+
```yaml
311311
apiVersion: azconfig.io/v1
312312
kind: AzureAppConfigurationProvider
313313
metadata:
@@ -330,7 +330,7 @@ This feature isn't yet supported in the Azure App Configuration Python Provider.
330330

331331
Set `AzureAppConfigurationOptions.loadBalancingEnabled` to `true` while loading configuration from App Configuration.
332332

333-
``` javascript
333+
```javascript
334334
const config = load(endpoint, credential, {
335335
loadBalancingEnabled: true
336336
});

0 commit comments

Comments
 (0)