Closed
Bug 1789646
Opened 2 years ago
Closed 2 years ago
Incorrect value for `last_activity_time` when requesting data for more than one user
Categories
(bugzilla.mozilla.org :: API, defect)
bugzilla.mozilla.org
API
Tracking
()
RESOLVED
FIXED
People
(Reporter: suhaib, Assigned: dkl)
Details
(Keywords: regression)
Each of the following requests return correct values:
{
"faults": [],
"users": [
{
"id": 697005,
"last_activity_time": "2022-09-07T00:47:22Z"
}
]
}
{
"faults": [],
"users": [
{
"id": 159069,
"last_activity_time": "2022-09-04T19:17:00Z"
}
]
}
However, when we request the data for more than one user in the same request, all users will have the same value in last_activity_time
field:
{
"users": [
{
"id": 159069,
"last_activity_time": "2022-09-04T19:17:00Z"
},
{
"last_activity_time": "2022-09-04T19:17:00Z",
"id": 697005
}
],
"faults": []
}
Reporter | ||
Updated•2 years ago
|
Keywords: regression
Summary: Random value for `last_activity_time` when requesting data for more than one user → Incorrect value for `last_activity_time` when requesting data for more than one user
Assignee | ||
Updated•2 years ago
|
Assignee: nobody → dkl
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•2 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
Resolution: --- → FIXED
Comment hidden (off-topic) |
You need to log in
before you can comment on or make changes to this bug.
Description
•