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

Add worker_main_http_uri to the contrib bash script #13772

Merged
merged 6 commits into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions changelog.d/13772.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add `worker_main_http_uri` for the worker generator bash script.
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ You can alternatively create multiple worker configuration files with a simple `
#!/bin/bash
for i in {1..5}
do
cat << EOF >> generic_worker$i.yaml
cat << EOF > generic_worker$i.yaml
worker_app: synapse.app.generic_worker
worker_name: generic_worker$i

# The replication listener on the main synapse process.
worker_replication_host: 127.0.0.1
worker_replication_http_port: 9093

worker_main_http_uri: http://localhost:8008/

worker_listeners:
- type: http
port: 808$i
Expand Down