# retry

## Usage

```bash
bdy pipeline run retry [options] <identifier> <run-id>
```

## Arguments

| **Argument** | **Description** |
| :--- | :--- |
| `identifier` | Human-readable ID of the pipeline (required) |
| `run-id` | ID of the pipeline run (required) |

## Options

| **Option** | **Description** |
| :--- | :--- |
| `-w, --workspace <domain>` | Workspace URL handle. Can be set via variable: BUDDY_WORKSPACE |
| `-p, --project <name>` | Project name. Can be set via variable: BUDDY_PROJECT |
| `-n, --no-wait` | Do not wait for run to finish |
| `--no-follow` | Do not follow changes, only print final state |
| `--format <text|jsonl>` | Output format: jsonl, text. Default: text |
| `-h, --help` | display help for command |

## Examples

### ## pipeline run retry

```bash
bdy pip run retry pipeline-identifier run-id
```

### ## pipeline run retry with only final json output

```bash
bdy pip run retry pipeline-identifier run-id --no-follow --format json
```


---
Original source: https://buddy.works/docs/cli/pipeline/run/retry