Skip to content

Commit 5b110c2

Browse files
authored
AC: fix telemetry end sending (#3398)
1 parent 58d14f1 commit 5b110c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def main():
101101
exception(e)
102102
return_code = 1
103103
continue
104-
end_telemetry(tm)
104+
end_telemetry(tm)
105105
sys.exit(return_code)
106106

107107

tools/accuracy_checker/openvino/tools/accuracy_checker/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ def start_telemetry():
901901
def end_telemetry(tm):
902902
if tm:
903903
try:
904-
tm.end_session()
904+
tm.end_session('ac')
905905
tm.force_shutdown(1.0)
906906
except Exception: # pylint:disable=W0703
907907
pass

0 commit comments

Comments
 (0)