diff --git a/cmd/bd/import.go b/cmd/bd/import.go index b1988efb..92f46b94 100644 --- a/cmd/bd/import.go +++ b/cmd/bd/import.go @@ -238,14 +238,14 @@ Behavior: } } - // Phase 4.5: Sync ID counters after importing issues with explicit IDs + // Phase 5: Sync ID counters after importing issues with explicit IDs // This prevents ID collisions with subsequently auto-generated issues if err := sqliteStore.SyncAllCounters(ctx); err != nil { fmt.Fprintf(os.Stderr, "Warning: failed to sync ID counters: %v\n", err) // Don't exit - this is not fatal, just a warning } - // Phase 5: Process dependencies + // Phase 6: Process dependencies // Do this after all issues are created to handle forward references var depsCreated, depsSkipped int for _, issue := range allIssues {