This commit is contained in:
silencev 2017-03-08 16:30:18 +08:00 коммит произвёл GitHub
Родитель b3777e5244
Коммит 08f6d7b862
1 изменённых файлов: 2 добавлений и 2 удалений

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

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