reconcile_wait: don't wait on pending by default

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Kent Overstreet 2025-11-20 18:09:02 -05:00
parent 6ac6662163
commit ceadc9b393

View File

@ -476,7 +476,7 @@ int cmd_reconcile_wait(int argc, char *argv[])
{ "help", no_argument, NULL, 'h' },
{ NULL }
};
unsigned types = ~0U;
unsigned types = ~0U & ~BIT(BCH_REBALANCE_ACCOUNTING_pending);
int opt;
while ((opt = getopt_long(argc, argv, "t:h", longopts, NULL)) != -1)