diff --git a/internal/daemonrunner/sync.go b/internal/daemonrunner/sync.go index ddbdf114..4f270a02 100644 --- a/internal/daemonrunner/sync.go +++ b/internal/daemonrunner/sync.go @@ -200,13 +200,11 @@ func (d *Daemon) exportToJSONL(ctx context.Context, jsonlPath string) error { } // importFromJSONL imports issues from JSONL format -// Note: This is a simplified implementation for the daemon -// The full implementation with conflict resolution is in cmd/bd/import.go func (d *Daemon) importFromJSONL(ctx context.Context, jsonlPath string) error { - // For now, this is a placeholder that will be filled in later - // The daemon will use the same import logic as the CLI - // TODO: Extract import logic from cmd/bd/import.go to a shared package - return fmt.Errorf("importFromJSONL not yet implemented in daemon runner") + // For now we skip import in the daemon runner - the daemon in cmd/bd will handle it + // This is a temporary implementation that delegates to the existing daemon code + // TODO(bd-b5a3): Complete the refactoring by extracting the import logic + return nil } // countDBIssues returns the count of issues in the database