Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion qawolf/deploy-success.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@
}
```

`results` is an array of matched triggers. Each entry contains either `created_suite_id` if a run was created, `duplicate_suite_id` if a run for this SHA already exists, or `failure_reason` if the run could not be created.
`results` is an array of matched triggers. Each entry contains one of: `created_suite_id` if a run was created, `duplicate_suite_id` if a run for this deployment already exists, or `failure_reason` if the run could not be created.

On the first delivery of a deployment, a matched trigger returns `created_suite_id` even when the deployment duplicates one QA Wolf is already handling — deduplication is settled after this response is sent, so the synchronous response does not report it. To find out whether your run was superseded by a duplicate, poll [CI greenlight](/qawolf/v0-ci-greenlight) and compare `relevantRunId` with `rootRunId` (see [Superseding logic](/qawolf/v0-ci-greenlight#superseding-logic)).

Check warning on line 73 in qawolf/deploy-success.mdx

View check run for this annotation

Mintlify / Mintlify Validation (qawolf) - vale-spellcheck

qawolf/deploy-success.mdx#L73

Did you really mean 'deduplication'?

<Note>
You see `duplicate_suite_id` only when retrying `deploy_success` for the same `sha` after deduplication has already settled. On the first delivery, a matched trigger is never reported as a duplicate.

Check warning on line 76 in qawolf/deploy-success.mdx

View check run for this annotation

Mintlify / Mintlify Validation (qawolf) - vale-spellcheck

qawolf/deploy-success.mdx#L76

Did you really mean 'deduplication'?
</Note>

## Response codes

Expand Down