diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-17 17:02:36 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-17 17:04:06 +0900 |
| commit | 420c721c7da46ab1c633b019441b7b623215fd12 (patch) | |
| tree | 8443996fcee8a5df3427708ecdd353fba54f941b /internal/pipewire/core.go | |
| parent | bac583f89edd1360150143ff51f7264c01aa69ec (diff) | |
all: raise timeout defaults
This avoids timing out on systems running very slowly.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/pipewire/core.go')
| -rw-r--r-- | internal/pipewire/core.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/pipewire/core.go b/internal/pipewire/core.go index 2161acf7..026f75bb 100644 --- a/internal/pipewire/core.go +++ b/internal/pipewire/core.go @@ -514,7 +514,7 @@ var ErrNotDone = errors.New("did not receive a Core::Done event targeting previo const ( // syncTimeout is the maximum duration [Core.Sync] is allowed to take before // receiving [CoreDone] or failing. - syncTimeout = 10 * time.Second + syncTimeout = RoundtripTimeout + 15*time.Second ) // Sync queues a [CoreSync] message for the PipeWire server and initiates a Roundtrip. |
