Increase timeout for branch reload

- up from 10s to 30s
This commit is contained in:
Mattias Granlund 2024-03-19 14:55:25 +01:00
parent 8987b10647
commit 8e0e048e0a

View File

@ -80,7 +80,7 @@ export class VirtualBranchService {
this.branchesError.set(undefined);
const fresh = firstValueFrom(
this.fresh$.pipe(
timeout(10000),
timeout(30000),
catchError(() => {
// Observable never errors for any other reasons
const err = 'Timed out while reloading virtual branches';