Skip to content

Inconsistency in get_root_timestamps #512

@bdpedigo

Description

@bdpedigo
client = CAVEclient("minnie65_phase3_v1")
root_ids = [
    864691136137805181,
    864691136237725199,
    864691135778700477,
    864691137055175542,
]
timestamps = client.chunkedgraph.get_root_timestamps(root_ids, latest=True)
print(timestamps)

gives

[datetime.datetime(2024, 10, 25, 20, 13, 10, 925000, tzinfo=<UTC>)
 datetime.datetime(2024, 12, 16, 7, 14, 45, 712000, tzinfo=<UTC>)
 datetime.datetime(2024, 12, 20, 21, 1, 7, 458073, tzinfo=<UTC>)
 datetime.datetime(1969, 12, 31, 23, 59, 59, 999000, tzinfo=<UTC>)]

Note that for the last ID the year is 1969...

But if I just query that one,

client = CAVEclient("minnie65_phase3_v1")
root_id = 864691137055175542
client.chunkedgraph.get_root_timestamps(root_id, latest=True)

I get something reasonable

[datetime.datetime(2024, 10, 15, 22, 17, 53, 503000, tzinfo=<UTC>)]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions