Skip to content

Commit

Permalink
Rename telemetry event as the schema is different (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
marianan authored Nov 4, 2022
1 parent 4188872 commit 7eede72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion iotedgehubdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
pkg_resources.declare_namespace(__name__)

__author__ = 'Microsoft Corporation'
__version__ = '0.14.17'
__version__ = '0.14.18'
__AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe'
__production__ = 'iotedgehubdev'
2 changes: 1 addition & 1 deletion iotedgehubdev/telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def generate_payload(self):
props.update(self.extra_props)

self.events[_get_AI_key()].append({
'name': '{}/command'.format(PRODUCT_NAME),
'name': '{}/commandV2'.format(PRODUCT_NAME),
'properties': props
})

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
from setuptools import find_packages, setup

VERSION = '0.14.17'
VERSION = '0.14.18'
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down

0 comments on commit 7eede72

Please sign in to comment.