log-llm-config 1.3.39 → 1.3.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -110,6 +110,8 @@ const readGithubUsername = () => {
|
|
|
110
110
|
encoding: 'utf8',
|
|
111
111
|
stdio: ['ignore', 'pipe', 'ignore'],
|
|
112
112
|
maxBuffer: 1024 * 1024,
|
|
113
|
+
// CI often has `gh` installed; without a cap it can block on auth/network and hang callers.
|
|
114
|
+
timeout: 3500,
|
|
113
115
|
}).trim();
|
|
114
116
|
if (out)
|
|
115
117
|
return out;
|