summary refs log tree commit diff
path: root/modules/software-templates/synapse-workers/generic
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-05-20 16:01:49 +0200
committerRory& <root@rory.gay>2025-05-20 16:01:49 +0200
commit0b4c04ff3844536815660e05ec46c9c63bf0be13 (patch)
tree9044f382fa71b14073c86afc93a6f15768ed4bf7 /modules/software-templates/synapse-workers/generic
parentSwitch to valkey, synapse changes, update draupnir containers (diff)
downloadRory-Open-Architecture-0b4c04ff3844536815660e05ec46c9c63bf0be13.tar.xz
Fix synapse config
Diffstat (limited to 'modules/software-templates/synapse-workers/generic')
-rw-r--r--modules/software-templates/synapse-workers/generic/auth.nix2
-rw-r--r--modules/software-templates/synapse-workers/generic/client-reader.nix2
-rw-r--r--modules/software-templates/synapse-workers/generic/event-creator.nix2
-rw-r--r--modules/software-templates/synapse-workers/generic/federation-inbound.nix2
-rw-r--r--modules/software-templates/synapse-workers/generic/federation-reader.nix2
-rw-r--r--modules/software-templates/synapse-workers/generic/federation-sender.nix2
-rw-r--r--modules/software-templates/synapse-workers/generic/media-repo.nix2
-rw-r--r--modules/software-templates/synapse-workers/generic/pusher.nix2
-rw-r--r--modules/software-templates/synapse-workers/generic/sync.nix2
9 files changed, 9 insertions, 9 deletions
diff --git a/modules/software-templates/synapse-workers/generic/auth.nix b/modules/software-templates/synapse-workers/generic/auth.nix

index faf3198..47064be 100644 --- a/modules/software-templates/synapse-workers/generic/auth.nix +++ b/modules/software-templates/synapse-workers/generic/auth.nix
@@ -82,7 +82,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers ); diff --git a/modules/software-templates/synapse-workers/generic/client-reader.nix b/modules/software-templates/synapse-workers/generic/client-reader.nix
index f27b6a2..9072988 100644 --- a/modules/software-templates/synapse-workers/generic/client-reader.nix +++ b/modules/software-templates/synapse-workers/generic/client-reader.nix
@@ -82,7 +82,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers ); diff --git a/modules/software-templates/synapse-workers/generic/event-creator.nix b/modules/software-templates/synapse-workers/generic/event-creator.nix
index 21f6128..e035405 100644 --- a/modules/software-templates/synapse-workers/generic/event-creator.nix +++ b/modules/software-templates/synapse-workers/generic/event-creator.nix
@@ -82,7 +82,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers ); diff --git a/modules/software-templates/synapse-workers/generic/federation-inbound.nix b/modules/software-templates/synapse-workers/generic/federation-inbound.nix
index 3362960..af18e8e 100644 --- a/modules/software-templates/synapse-workers/generic/federation-inbound.nix +++ b/modules/software-templates/synapse-workers/generic/federation-inbound.nix
@@ -82,7 +82,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers ); diff --git a/modules/software-templates/synapse-workers/generic/federation-reader.nix b/modules/software-templates/synapse-workers/generic/federation-reader.nix
index f3baf1d..09e8419 100644 --- a/modules/software-templates/synapse-workers/generic/federation-reader.nix +++ b/modules/software-templates/synapse-workers/generic/federation-reader.nix
@@ -82,7 +82,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers ); diff --git a/modules/software-templates/synapse-workers/generic/federation-sender.nix b/modules/software-templates/synapse-workers/generic/federation-sender.nix
index 9ab3285..bf6cf51 100644 --- a/modules/software-templates/synapse-workers/generic/federation-sender.nix +++ b/modules/software-templates/synapse-workers/generic/federation-sender.nix
@@ -100,7 +100,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers ); diff --git a/modules/software-templates/synapse-workers/generic/media-repo.nix b/modules/software-templates/synapse-workers/generic/media-repo.nix
index eef5574..d9db8cf 100644 --- a/modules/software-templates/synapse-workers/generic/media-repo.nix +++ b/modules/software-templates/synapse-workers/generic/media-repo.nix
@@ -82,7 +82,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers ); diff --git a/modules/software-templates/synapse-workers/generic/pusher.nix b/modules/software-templates/synapse-workers/generic/pusher.nix
index 20e88a3..8c6b697 100644 --- a/modules/software-templates/synapse-workers/generic/pusher.nix +++ b/modules/software-templates/synapse-workers/generic/pusher.nix
@@ -81,7 +81,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers ); diff --git a/modules/software-templates/synapse-workers/generic/sync.nix b/modules/software-templates/synapse-workers/generic/sync.nix
index d3ff94c..eb47e59 100644 --- a/modules/software-templates/synapse-workers/generic/sync.nix +++ b/modules/software-templates/synapse-workers/generic/sync.nix
@@ -82,7 +82,7 @@ in name = "unix:/run/matrix-synapse/${workerName}-${type}-${toString index}.sock"; value = { max_fails = 0; - fail_timeout = 0s; + fail_timeout = "0s"; }; }) workers );