diff --git a/packages/basic-crawler/src/internals/basic-crawler.ts b/packages/basic-crawler/src/internals/basic-crawler.ts index 20bcf2e5ed1b..a87dfb025c26 100644 --- a/packages/basic-crawler/src/internals/basic-crawler.ts +++ b/packages/basic-crawler/src/internals/basic-crawler.ts @@ -360,6 +360,14 @@ export interface CrawlerExperiments { * default causes issues. Please open an issue if you encounter problems with the new API. */ disableRequestLocking?: boolean; + + /** + * @deprecated This experiment is now enabled by default, and this flag will be removed in a future release. + * If you encounter issues due to this change, please: + * - report it to us: https://github.com/apify/crawlee + * - set `disableRequestLocking` to `true` in the `experiments` option of the crawler + */ + requestLocking?: boolean; } /**