Skip to content

Commit

Permalink
fix: dashboard query (#1762)
Browse files Browse the repository at this point in the history
* fix: dashboard query

* bumped
  • Loading branch information
allisonsuarez authored Mar 11, 2022
1 parent 25fa0c4 commit fb46c4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion databuilder/databuilder/task/search/search_data_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
}} AS usage,
coalesce(db_descr.description, '') as description,
coalesce(dbg.description, '') as group_description, dbg.dashboard_group_url as group_url,
dashboard.dashboard_url as url, dashboard.key as key,
dashboard.dashboard_url as url, dashboard.key as key, dashboard.key as uri,
split(dashboard.key, '_')[0] as product, toInteger(last_exec.timestamp) as last_successful_run_timestamp,
query_names, chart_names, tags, badges
order by dbg.name
Expand Down
2 changes: 1 addition & 1 deletion databuilder/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import find_packages, setup

__version__ = '6.7.2'
__version__ = '6.7.3'

requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_path) as requirements_file:
Expand Down

0 comments on commit fb46c4c

Please sign in to comment.