Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Add worker_manhole to configuration manual (#14824)
Browse files Browse the repository at this point in the history
Closes: #13643
  • Loading branch information
dklimpel authored Jan 13, 2023
1 parent d344bc8 commit 1caf16a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/14824.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add `worker_manhole` to configuration manual.
21 changes: 21 additions & 0 deletions docs/usage/configuration/config_documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4029,6 +4029,27 @@ worker_listeners:
resources:
- names: [client, federation]
```
---
### `worker_manhole`

A worker may have a listener for [`manhole`](../../manhole.md).
It allows server administrators to access a Python shell on the worker.

Example configuration:
```yaml
worker_manhole: 9000
```

This is a short form for:
```yaml
worker_listeners:
- port: 9000
bind_addresses: ['127.0.0.1']
type: manhole
```

It needs also an additional [`manhole_settings`](#manhole_settings) configuration.

---
### `worker_daemonize`

Expand Down

0 comments on commit 1caf16a

Please sign in to comment.