We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01ba80f commit 0fa8e1fCopy full SHA for 0fa8e1f
internal/cmd/group_aws_migrate.go
@@ -121,7 +121,7 @@ var groupAwsMigrationStartCmd = &cobra.Command{
121
return err
122
}
123
124
- ctx, cancel := context.WithTimeout(cmd.Context(), 5*time.Millisecond)
+ ctx, cancel := context.WithTimeout(cmd.Context(), 5*time.Minute)
125
defer cancel()
126
127
for {
internal/turso/groups.go
@@ -430,7 +430,7 @@ func (d *GroupsClient) AbortAwsMigration(group string) error {
430
431
if r.StatusCode != http.StatusOK {
432
err := parseResponseError(r)
433
- return fmt.Errorf("failed to start group migration: %w", err)
+ return fmt.Errorf("failed to abort group migration: %w", err)
434
435
return nil
436
0 commit comments