Skip to content

Commit d33016e

Browse files
authored
Cast int on last_successful_run_timestamp on Dashboard search extraction (#274)
1 parent 11e4df7 commit d33016e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

databuilder/extractor/neo4j_search_data_extractor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class Neo4jSearchDataExtractor(Extractor):
9090
coalesce(db_descr.description, '') as description,
9191
coalesce(dbg.description, '') as group_description, dbg.dashboard_group_url as group_url,
9292
db.dashboard_url as url, db.key as uri,
93-
'mode' as product, last_exec.timestamp as last_successful_run_timestamp,
93+
'mode' as product, toInt(last_exec.timestamp) as last_successful_run_timestamp,
9494
COLLECT(DISTINCT query.name) as query_names,
9595
total_usage
9696
order by dbg.name

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup, find_packages
33

44

5-
__version__ = '2.5.16'
5+
__version__ = '2.5.17'
66

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

0 commit comments

Comments
 (0)