-
Notifications
You must be signed in to change notification settings - Fork 32
FindEntity fails with property with an int64 number #88
Copy link
Copy link
Closed
Labels
BugIndicates unexpected or undesired behaviorsIndicates unexpected or undesired behaviors
Description
Added entity with:
[{'AddEntity': {'class': 'Cell',
'properties': {'cell_id.number': 2674,
'cell_id.time': 1544069566053,
'num_images': 2,
'sample_id': '1134'}}}]
[{'AddEntity': {'info': '', 'status': 0}}] []
This FindEntity succeeds:
[{'FindEntity': {'class': 'Cell', 'results': {'list': ['cell_id.number', 'sample_id']}}}]
[{'FindEntity': {'entities': [{'cell_id.number': 2674, 'sample_id': '1134'}], 'returned': 1, 'status': 0}}] []
This FindEntity fails:
[{'FindEntity': {'class': 'Cell', 'results': {'list': ['cell_id.number', 'cell_id.time']}}}]
[{'FailedCommand': 'Transaction', 'info': 'Failed PMGDTransaction', 'status': -1}] []
# Server error
{
"info" : "ReadOnly: ",
"status" : -1
}
If I insert a smaller integer for cell_id.time then it works fine.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
BugIndicates unexpected or undesired behaviorsIndicates unexpected or undesired behaviors