Skip to content

Commit

Permalink
Cast int on last_successful_run_timestamp on Dashboard search extract…
Browse files Browse the repository at this point in the history
…ion (#274)
  • Loading branch information
jinhyukchang committed May 27, 2020
1 parent 11e4df7 commit d33016e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion databuilder/extractor/neo4j_search_data_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class Neo4jSearchDataExtractor(Extractor):
coalesce(db_descr.description, '') as description,
coalesce(dbg.description, '') as group_description, dbg.dashboard_group_url as group_url,
db.dashboard_url as url, db.key as uri,
'mode' as product, last_exec.timestamp as last_successful_run_timestamp,
'mode' as product, toInt(last_exec.timestamp) as last_successful_run_timestamp,
COLLECT(DISTINCT query.name) as query_names,
total_usage
order by dbg.name
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages


__version__ = '2.5.16'
__version__ = '2.5.17'

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 d33016e

Please sign in to comment.