Skip to content

Commit

Permalink
[oss telemetry] Get rid of telemetry version (#6760)
Browse files Browse the repository at this point in the history
* Get rid of telemetry version

* Propogate change to tests
  • Loading branch information
dpeng817 committed Mar 22, 2022
1 parent 6f10ab0 commit 2cffa49
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion python_modules/dagit/dagit_tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ def test_dagit_logs(_, caplog):
"python_version",
"run_storage_id",
"metadata",
"version",
"dagster_version",
"os_desc",
"os_platform",
Expand Down
3 changes: 0 additions & 3 deletions python_modules/dagster/dagster/core/telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
SCHEDULED_RUN_CREATED = "scheduled_run_created"
SENSOR_RUN_CREATED = "sensor_run_created"
BACKFILL_RUN_CREATED = "backfill_run_created"
TELEMETRY_VERSION = "0.2"
OS_DESC = platform.platform()
OS_PLATFORM = platform.system()

Expand Down Expand Up @@ -139,7 +138,6 @@ class TelemetryEntry(
("instance_id", str),
("metadata", Dict[str, str]),
("python_version", str),
("version", str),
("dagster_version", str),
("os_desc", str),
("os_platform", str),
Expand Down Expand Up @@ -197,7 +195,6 @@ def __new__(
instance_id=instance_id,
python_version=get_python_version(),
metadata=metadata,
version=TELEMETRY_VERSION,
dagster_version=dagster_module_version,
os_desc=OS_DESC,
os_platform=OS_PLATFORM,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"run_storage_id",
"python_version",
"metadata",
"version",
"os_desc",
"os_platform",
"dagster_version",
Expand Down

0 comments on commit 2cffa49

Please sign in to comment.