Skip to content

Commit

Permalink
(#1574) track adapter type and rpc requests
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  91124d2
  • Loading branch information
drewbanin authored and iknox-fa committed Feb 8, 2022
1 parent ae7d936 commit e78e968
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/dbt/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
RUN_MODEL_SPEC = "iglu:com.dbt/run_model/jsonschema/1-0-1"
INVOCATION_ENV_SPEC = "iglu:com.dbt/invocation_env/jsonschema/1-0-0"
PACKAGE_INSTALL_SPEC = "iglu:com.dbt/package_install/jsonschema/1-0-0"
RPC_REQUEST_SPEC = 'iglu:com.dbt/rpc_request/jsonschema/1-0-1'
RPC_REQUEST_SPEC = "iglu:com.dbt/rpc_request/jsonschema/1-0-1"
DEPRECATION_WARN_SPEC = 'iglu:com.dbt/deprecation_warn/jsonschema/1-0-0'
LOAD_ALL_TIMING_SPEC = "iglu:com.dbt/load_all_timing/jsonschema/1-0-3"
RESOURCE_COUNTS = 'iglu:com.dbt/resource_counts/jsonschema/1-0-0'
Expand Down Expand Up @@ -339,9 +339,9 @@ def track_rpc_request(options):
track(
active_user,
category="dbt",
action='rpc_request',
action="rpc_request",
label=get_invocation_id(),
context=context
context=context,
)


Expand Down

0 comments on commit e78e968

Please sign in to comment.