mirror of
				https://github.com/lightpanda-io/browser.git
				synced 2025-10-30 15:41:48 +00:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			28ec8d4b94
			...
			speedup_te
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 5604affd0b | ||
|   | 60f1b1160e | 
| @@ -353,7 +353,8 @@ pub const Page = struct { | ||||
|                         std.debug.assert(http_client.intercepted == 0); | ||||
|  | ||||
|                         const ms = ms_to_next_task orelse blk: { | ||||
|                             if (wait_ms - ms_remaining < 100) { | ||||
|                             const min_wait = if (comptime builtin.is_test) 50 else 100; | ||||
|                             if (wait_ms - ms_remaining < min_wait) { | ||||
|                                 // Look, we want to exit ASAP, but we don't want | ||||
|                                 // to exit so fast that we've run none of the | ||||
|                                 // background jobs. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user