Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Crash when calling recoverUsers twice for the same user #64428

@qaisjp

Description

@qaisjp
  • Sourcegraph version:: 5.6.185
  • Platform information: Sourcegraph Cloud

Steps to reproduce:

  1. Soft delete a user.
  2. Call the following mutation twice for that user: mutation { recoverUsers(userIDs: [$userID]) { alwaysNil } }

Expected behavior:

The error message should say that the user is already recovered, or the request should be idempotent (with the response indicating whether an action was taken).

Actual behavior:

Postgres failure is propagated to the client:

{
  "errors": [
    {
      "message": "ERROR: duplicate key value violates unique constraint \"names_pkey\" (SQLSTATE 23505)",
      "path": [
        "recoverUsers"
      ]
    }
  ],
  "data": {
    "recoverUsers": null
  }
}

Metadata

Metadata

Assignees

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