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 @@ -120,7 +120,7 @@ export class Configuration extends CoreConfiguration {
120
120
// maps environment variables to config keys (e.g. `APIFY_MEMORY_MBYTES` to `memoryMbytes`)
121
121
protected static override ENV_MAP = {
122
122
// regular crawlee env vars are also supported
123
- ...super . ENV_MAP ,
123
+ ...CoreConfiguration . ENV_MAP ,
124
124
125
125
// support crawlee env vars prefixed with `APIFY_` too
126
126
APIFY_AVAILABLE_MEMORY_RATIO : 'availableMemoryRatio' ,
@@ -180,22 +180,22 @@ export class Configuration extends CoreConfiguration {
180
180
} ;
181
181
182
182
protected static override INTEGER_VARS = [
183
- ...super . INTEGER_VARS ,
183
+ ...CoreConfiguration . INTEGER_VARS ,
184
184
'proxyPort' ,
185
185
'containerPort' ,
186
186
'metamorphAfterSleepMillis' ,
187
187
'maxTotalChargeUsd' ,
188
188
] ;
189
189
190
190
protected static override BOOLEAN_VARS = [
191
- ...super . BOOLEAN_VARS ,
191
+ ...CoreConfiguration . BOOLEAN_VARS ,
192
192
'isAtHome' ,
193
193
'testPayPerEvent' ,
194
194
'useChargingLogDataset' ,
195
195
] ;
196
196
197
197
protected static override DEFAULTS = {
198
- ...super . DEFAULTS ,
198
+ ...CoreConfiguration . DEFAULTS ,
199
199
defaultKeyValueStoreId :
200
200
LOCAL_ACTOR_ENV_VARS [ ACTOR_ENV_VARS . DEFAULT_KEY_VALUE_STORE_ID ] ,
201
201
defaultDatasetId :
You can’t perform that action at this time.
0 commit comments