File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ if (standbyMode) {
82
82
app . listen ( port , async ( ) => {
83
83
log . info ( `The Actor web server is listening for user requests at ${ host } :${ port } ` ) ;
84
84
85
- const promisese : Promise < unknown > [ ] = [ ] ;
86
- promisese . push ( createAndStartSearchCrawler ( searchCrawlerOptions ) ) ;
85
+ const promises : Promise < unknown > [ ] = [ ] ;
86
+ promises . push ( createAndStartSearchCrawler ( searchCrawlerOptions ) ) ;
87
87
for ( const settings of contentCrawlerOptions ) {
88
- promisese . push ( createAndStartContentCrawler ( settings ) ) ;
88
+ promises . push ( createAndStartContentCrawler ( settings ) ) ;
89
89
}
90
90
91
- await Promise . all ( promisese ) ;
91
+ await Promise . all ( promises ) ;
92
92
} ) ;
93
93
} else {
94
94
log . info ( 'Actor is running in the NORMAL mode.' ) ;
You can’t perform that action at this time.
0 commit comments