fix(goose-server): cache TLS cert to disk to avoid slow startup on first launch (#8174)

Signed-off-by: Treebird <treebird@treebird.dev>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Treebird
2026-04-23 03:16:02 +03:00
committed by GitHub
parent 78eae06d3d
commit 092a40c44b
2 changed files with 70 additions and 1 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ export const findGoosedBinaryPath = (options: FindBinaryOptions = {}): string =>
};
export const checkServerStatus = async (client: Client, errorLog: string[]): Promise<boolean> => {
const timeout = 10000;
const timeout = 30000;
const interval = 100;
const maxAttempts = Math.ceil(timeout / interval);