Skip to content

Commit c1be57d

Browse files
authored
Merge pull request #6807 from Particular/johnsimons-patch-1
Do not use single quotes in json
2 parents 78eb43c + e1eab1b commit c1be57d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

servicecontrol/servicecontrol-instances/remotes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Remote instances are listed in the `ServiceControl/RemoteInstances` app setting
228228
```xml
229229
<configuration>
230230
<appSettings>
231-
<add key="ServiceControl/RemoteInstances" value="[{'api_uri':'http://localhost:33334/api'}]"/>
231+
<add key="ServiceControl/RemoteInstances" value="[{&quot;api_uri&quot;:&quot;http://localhost:33334/api&quot;}]"/>
232232
</appSettings>/
233233
</configuration>
234234
```
@@ -238,7 +238,7 @@ Remote instances are listed in the `ServiceControl/RemoteInstances` app setting
238238
```xml
239239
<configuration>
240240
<appSettings>
241-
<add key="ServiceControl/RemoteInstances" value="[{'api_uri':'http://localhost:33334/api', 'queue_address':'Particular.ServiceControl.Remote'}]"/>
241+
<add key="ServiceControl/RemoteInstances" value="[{&quot;api_uri&quot;:&quot;http://localhost:33334/api&quot;, &quot;queue_address&quot;:&quot;Particular.ServiceControl.Remote&quot;}]"/>
242242
</appSettings>/
243243
</configuration>
244244
```

0 commit comments

Comments
 (0)