disabled share_instance for reliable announces
With share_instance = Yes, announces weren't being sent over TCP in Docker environments. Setting it to No ensures each TinyWeb instance manages its own Reticulum interfaces directly.
This commit is contained in:
parent
f8f04ce4f2
commit
bfb8acf946
2 changed files with 2 additions and 2 deletions
2
app.py
2
app.py
|
|
@ -53,7 +53,7 @@ def ensure_rns_config(config_dir):
|
||||||
with open(config_file, "w") as f:
|
with open(config_file, "w") as f:
|
||||||
f.write(f"""[reticulum]
|
f.write(f"""[reticulum]
|
||||||
enable_transport = False
|
enable_transport = False
|
||||||
share_instance = Yes
|
share_instance = No
|
||||||
|
|
||||||
[logging]
|
[logging]
|
||||||
loglevel = 4
|
loglevel = 4
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ if [ ! -f "$CONFIG_FILE" ]; then
|
||||||
cat > "$CONFIG_FILE" <<EOF
|
cat > "$CONFIG_FILE" <<EOF
|
||||||
[reticulum]
|
[reticulum]
|
||||||
enable_transport = False
|
enable_transport = False
|
||||||
share_instance = Yes
|
share_instance = No
|
||||||
|
|
||||||
[logging]
|
[logging]
|
||||||
loglevel = 4
|
loglevel = 4
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue