Increase max concurrent request to 10

Improve wait analysis dump.

De-prioritize secondary schedules.

Don't log warning for application/json scripts

Change pretty log timer to display time from start.
This commit is contained in:
Karl Seguin
2025-08-05 16:20:00 +08:00
parent 9876d79680
commit c7484c69c0
7 changed files with 98 additions and 51 deletions

View File

@@ -531,7 +531,8 @@ pub const Transfer = struct {
return chunk_len;
}
fn fromEasy(easy: *c.CURL) !*Transfer {
// pub because Page.printWaitAnalysis uses it
pub fn fromEasy(easy: *c.CURL) !*Transfer {
var private: *anyopaque = undefined;
try errorCheck(c.curl_easy_getinfo(easy, c.CURLINFO_PRIVATE, &private));
return @alignCast(@ptrCast(private));