Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: always enable crawlee storage purging when --purge is provided, even in non-crawlee-detected envs #543

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,17 +128,14 @@ export class RunCommand extends ApifyCommand<typeof RunCommand> {
// Purge stores
if (this.flags.purge) {
switch (projectType) {
case PROJECT_TYPES.CRAWLEE: {
CRAWLEE_PURGE_ON_START = '1';
break;
}
case PROJECT_TYPES.PRE_CRAWLEE_APIFY_SDK: {
await Promise.all([purgeDefaultQueue(), purgeDefaultKeyValueStore(), purgeDefaultDataset()]);
info('All default local stores were purged.');
break;
}
case PROJECT_TYPES.CRAWLEE:
default: {
// TODO: Python SDK too
CRAWLEE_PURGE_ON_START = '1';
}
}
}
Expand Down