Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document --plugin-continue-on-error #1750

Merged
Merged
Changes from 2 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
39 changes: 39 additions & 0 deletions docs/public-networks/reference/cli/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -2965,6 +2965,45 @@ p2p-port="1789"

The P2P listening ports (UDP and TCP). The default is `30303`. You must [expose ports appropriately](../../how-to/connect/configure-ports.md).

### `plugin-continue-on-error`

<Tabs>
<TabItem value="Syntax">

```bash
--plugin-continue-on-error[=<true|false>]
```

</TabItem>
<TabItem value="Example">

```bash
--plugin-continue-on-error=true
```

</TabItem>
<TabItem value="Environment variable">

```bash
BESU_PLUGIN_CONTINUE_ON_ERROR=true
```

</TabItem>
<TabItem value="Configuration file">

```bash
plugin-continue-on-error=true
```

</TabItem>
</Tabs>

Enables or disables continuing to run Besu if a plugin fails during registration or other startup lifecycle stages.
alexandratran marked this conversation as resolved.
Show resolved Hide resolved
If set to `true` and any plugin fails, Besu logs the error and continues running.
alexandratran marked this conversation as resolved.
Show resolved Hide resolved
If set to `false` and any plugin fails, Besu throws a `RuntimeException` and stops running.

The default is `false`.

### `print-paths-and-exit`

<Tabs>
Expand Down
Loading