File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
basic-crawler/src/internals
browser-crawler/src/internals Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1343,7 +1343,7 @@ export class BasicCrawler<Context extends CrawlingContext = BasicCrawlingContext
13431343 await addTimeoutToPromise (
13441344 async ( ) => this . _runRequestHandler ( crawlingContext ) ,
13451345 this . requestHandlerTimeoutMillis ,
1346- `BasicCrawler Wrapper(Combined) timed out after ${ this . requestHandlerTimeoutMillis / 1000 } seconds (${ request . id } ).` ,
1346+ `Request handler safety timed out after ${ this . requestHandlerTimeoutMillis / 1000 } seconds (${ request . id } ).` ,
13471347 ) ;
13481348 } else {
13491349 // No timeout wrapper - run directly
Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ export abstract class BrowserCrawler<
332332 {
333333 ...basicCrawlerOptions ,
334334 requestHandler : async ( ...args ) => this . _runRequestHandler ( ...( args as [ Context ] ) ) ,
335- requestHandlerTimeoutSecs : 0 , // Disable request handler timeout after modifying the basic crawler wrapper
335+ requestHandlerTimeoutSecs : 0 , // Disable outer request handler timeout after modifying the basic crawler wrapper
336336 } ,
337337 config ,
338338 ) ;
You can’t perform that action at this time.
0 commit comments