We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e99f4 commit 2c18ad2Copy full SHA for 2c18ad2
.changeset/dry-walls-sleep.md
@@ -0,0 +1,6 @@
1
+---
2
+'@powersync/service-core': patch
3
+'@powersync/service-image': patch
4
5
+
6
+Fix compact action
packages/service-core/src/entry/commands/compact-action.ts
@@ -29,7 +29,7 @@ export function registerCompactAction(program: Command) {
29
30
return compactCommand.description('Compact storage').action(async (options) => {
31
const buckets = options.buckets?.split(',');
32
- if (buckets != null) {
+ if (buckets == null) {
33
logger.info('Compacting storage for all buckets...');
34
} else {
35
logger.info(`Compacting storage for ${buckets.join(', ')}...`);
0 commit comments