Skip to content

Commit f192257

Browse files
authored
Merge pull request #164466 from kgremban/jul2-77690-createoptions
Fix createOptions empty strings
2 parents 6d5f80d + a12a3ee commit f192257

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

articles/iot-edge/how-to-configure-proxy-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ With the environment variables included, your module definition should look like
352352
"type": "docker",
353353
"settings": {
354354
"image": "mcr.microsoft.com/azureiotedge-hub:1.1",
355-
"createOptions": ""
355+
"createOptions": "{}"
356356
},
357357
"env": {
358358
"https_proxy": {

articles/iot-edge/how-to-connect-downstream-iot-edge-device.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ The API proxy module was designed to be customized to handle most common gateway
382382
"edgeAgent": {
383383
"settings": {
384384
"image": "mcr.microsoft.com/azureiotedge-agent:1.2",
385-
"createOptions": ""
385+
"createOptions": "{}"
386386
},
387387
"type": "docker"
388388
},

articles/iot-edge/how-to-deploy-cli-at-scale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Here's a basic layered deployment manifest with one module as an example:
129129
"properties.desired.modules.SimulatedTemperatureSensor": {
130130
"settings": {
131131
"image": "mcr.microsoft.com/azureiotedge-simulated-temperature-sensor:1.0",
132-
"createOptions": ""
132+
"createOptions": "{}"
133133
},
134134
"type": "docker",
135135
"status": "running",

articles/iot-edge/module-composition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ The following example shows what a valid deployment manifest document may look l
325325
"type": "docker",
326326
"settings": {
327327
"image": "mcr.microsoft.com/azureiotedge-agent:1.1",
328-
"createOptions": ""
328+
"createOptions": "{}"
329329
}
330330
},
331331
"edgeHub": {

0 commit comments

Comments
 (0)