/{cmd,docs,internal,website}: make dolt backend explicitly single process
This commit is contained in:
@@ -185,7 +185,7 @@ The --full flag provides the legacy full sync behavior for backwards compatibili
|
||||
fmt.Println("→ [DRY RUN] Would import from JSONL")
|
||||
} else {
|
||||
fmt.Println("→ Importing from JSONL...")
|
||||
if err := importFromJSONLInline(ctx, jsonlPath, renameOnImport, noGitHistory); err != nil {
|
||||
if err := importFromJSONLInline(ctx, jsonlPath, renameOnImport, noGitHistory, false); err != nil {
|
||||
FatalError("importing: %v", err)
|
||||
}
|
||||
fmt.Println("✓ Import complete")
|
||||
@@ -1066,7 +1066,7 @@ func resolveSyncConflicts(ctx context.Context, jsonlPath string, strategy config
|
||||
}
|
||||
|
||||
// Import to database
|
||||
if err := importFromJSONLInline(ctx, jsonlPath, false, false); err != nil {
|
||||
if err := importFromJSONLInline(ctx, jsonlPath, false, false, false); err != nil {
|
||||
return fmt.Errorf("importing merged state: %w", err)
|
||||
}
|
||||
|
||||
@@ -1198,7 +1198,7 @@ func resolveSyncConflictsManually(ctx context.Context, jsonlPath, beadsDir strin
|
||||
}
|
||||
|
||||
// Import to database
|
||||
if err := importFromJSONLInline(ctx, jsonlPath, false, false); err != nil {
|
||||
if err := importFromJSONLInline(ctx, jsonlPath, false, false, false); err != nil {
|
||||
return fmt.Errorf("importing merged state: %w", err)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user