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)

defect

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": []
}
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: nobody → dkl
Status: NEW → ASSIGNED
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.