Merge pull request #26 from Microsoft/revert-25-dict-fix

Revert "Fix dict type iterate issue"
This commit is contained in:
Osvaldo Rosado 2017-03-15 11:53:54 -07:00 коммит произвёл GitHub
Родитель e40bae81cb f23af6bef5
Коммит bb15f9fada
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -101,9 +101,9 @@ class TelemetryChannel(object):
if not properties:
properties = {}
data.properties = properties
for key in local_context.properties:
for key, value in local_context.properties:
if key not in properties:
properties[key] = local_context.properties[key]
properties[key] = value
envelope.data.base_data = data
self._queue.put(envelope)