Skip to content

Commit

Permalink
fix: make name for new timestamp field accurate
Browse files Browse the repository at this point in the history
simon-20 committed Jan 29, 2025
1 parent fbfee74 commit 85ce339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bulk_data_service/dataset_indexing.py
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ def create_reporting_org_index_json(


def create_index_time_entries(created_time: datetime) -> dict[str, Any]:
return {"index_created": created_time, "index_created_epoch": int(created_time.timestamp())}
return {"index_created": created_time, "index_created_unix_timestamp": int(created_time.timestamp())}


def get_reporting_orgs_for_datasets(

0 comments on commit 85ce339

Please sign in to comment.