File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export async function waitForRunToFinishAndPushData(runConfig: PreparedActorConf
29
29
value . residentialGBs = Number ( residentialGBs . toFixed ( 8 ) ) ;
30
30
value . residentialGBsPerRequest = Number ( ( residentialGBs / value . totalPages ) . toFixed ( 8 ) ) ;
31
31
value . proxyUsed = runConfig . proxyUsed ;
32
- value . estimatedCost = Number ( ( computeUnits * DEFAULT_COSTS . COMPUTE_UNIT + residentialGBs * DEFAULT_COSTS . RESIDENTIAL_GB ) . toFixed ( 6 ) ) ;
32
+ value . estimatedCost = Number ( ( computeUnits * DEFAULT_COSTS . COMPUTE_UNIT + residentialGBs * DEFAULT_COSTS . RESIDENTIAL_GB ) . toFixed ( 4 ) ) ;
33
33
value . estimatedCostPerRequest = Number ( ( value . estimatedCost / value . totalPages ) . toFixed ( 6 ) ) ;
34
34
35
35
if ( runConfig . input [ 'playwright.chrome' ] ) {
Original file line number Diff line number Diff line change @@ -106,6 +106,9 @@ export interface ActorCheckDetailedOutput {
106
106
computeUnitsPerRequest : number ;
107
107
residentialGBs : number ;
108
108
residentialGBsPerRequest : number ;
109
+ estimatedCost : number ;
110
+ estimatedCostPerRequest : number ;
111
+
109
112
110
113
// URLs
111
114
url : string ;
You can’t perform that action at this time.
0 commit comments