Issue-
I'm reading module twin properties in my edge module.
When i'm using -
client = IoTHubModuleClient.create_from_connection_string("HostName=example.azure-devices.net;DeviceId=example;ModuleId=ExampleModuleId;SharedAccessKey=somekey")
client.get_twin()
I'm able to get the module twin values from ExampleModuleId but when we're using -
client = IoTHubModuleClient.create_from_edge_environment()
client.get_twin()
It's returning - .
{'desired':{}, 'reported':{}}
Note - I'm running this code in edge environment.
Let me know if anything other details needed to debug the issue.
Issue-
I'm reading module twin properties in my edge module.
When i'm using -
I'm able to get the module twin values from ExampleModuleId but when we're using -
It's returning - .
Note - I'm running this code in edge environment.
Let me know if anything other details needed to debug the issue.